Built-In Types Table

suggest change

The following table shows the keywords for built-in C# types, which are aliases of predefined types in the System namespaces.

| C# Type| .NET Framework Type|
| ------ | ------ |
| bool | System.Boolean|  
| byte| System.Byte|  
| sbyte | System.SByte|  
| char | System.Char|
| decimal| System.Decimal|  
| double | System.Double|  
| float| System.Single|  
| int | System.Int32| 
| uint| System.UInt32|  
| long | System.Int64|  
| ulong | System.UInt64|  
| object| System.Object|  
| short | System.Int16|  
| ushort| System.UInt16|  
| string | System.String|

The C# type keywords and their aliases are interchangeable. For example, you can declare an integer variable by using either of the following declarations:

int number = 123;
System.Int32 number = 123;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Aliases of built-in types:
* Built-In Types Table

Table Of Contents
17 Regex
19 Arrays
21 Enum
22 Tuples
24 GUID
27 Looping
32 Aliases of built-in types
36 Casting
46 Methods
88 Events
92 Structs
104 Indexer
106 Stream
107 Timers
109 Threading
127 Caching
135 Pointers
147 C# Script