Numeric Types: Checked Conversions : Casting Conversions « Language Basics « C# / C Sharp

C# / C Sharp
1. 2D Graphics
2. Collections Data Structure
3. Components
4. Database ADO.net
5. Development Class
6. Event
7. File Stream
8. GUI Windows Form
9. Language Basics
10. Network
11. Office
12. Regular Expressions
13. Services Event
14. Thread
15. Web Services
16. Windows
17. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
C# / C Sharp » Language Basics » Casting ConversionsScreenshots 
Numeric Types: Checked Conversions


using System;

public class CheckedConversions
{
    public static void Main()
    {
        checked
        {
            uint value1 = 312;
            byte value2 = (bytevalue1;
            Console.WriteLine("Value: {0}", value2);
        }
    }
}

           
       
Related examples in the same category
1. An example that uses an implicit conversion operatorAn example that uses an implicit conversion operator
2. Use an explicit conversionUse an explicit conversion
3. illustrates casting objectsillustrates casting objects
4. The use of the cast operatorThe use of the cast operator
5. Casting int float and byte
6. User-Defined Conversions: How It Works: Conversion Lookup
7. Conversions: Numeric Types
8. Conversions:Numeric Types:Checked Conversions
9. Conversions:Numeric Types:Conversions and Member LookupConversions:Numeric Types:Conversions and Member Lookup
10. Conversions:Numeric Types:Explicit Numeric ConversionsConversions:Numeric Types:Explicit Numeric Conversions
11. Conversions of Classes (Reference Types)\To an Interface the Object Might ImplementConversions of Classes (Reference Types)\To an Interface 
 the Object Might Implement
12. Conversions of Classes (Reference Types):To the Base Class of an ObjectConversions of Classes (Reference Types):To the Base Class of an Object
13. User-Defined Conversions:A Simple ExampleUser-Defined Conversions:A Simple Example
14. Classes and Pre and Post Conversions
15. Conversion Lookup
w___w_w._j___a___v___a2_s___._c_om_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.