CLS versus CLR
CLS versus CLR
Built-in Types
Built-in Types
|
C#
|
CTS type
(FCL name)
|
CLS compliant
|
|
int
|
System.Int32
|
yes
|
|
uint
|
System.UInt32
|
no
|
|
sbyte
|
System.SByte
|
no
|
|
byte
|
System.Byte
|
yes
|
|
short
|
System.Int16
|
yes
|
|
ushort
|
System.UInt16
|
no
|
|
long
|
System.Int64
|
yes
|
|
ulong
|
System.UInt64
|
no
|
|
float
|
System.Single
|
yes
|
|
double
|
System.Double
|
yes
|
|
decimal
|
System.Decimal
|
yes
|
|
char
|
System.Char
|
yes
|
|
string
|
System.String
|
yes
|
|
object
|
System.Object
|
yes
|
Comments
Post a Comment