Поделиться через


базовые типы данных среда выполнения Windows

В этой таблице перечислены базовые типы данных, поддерживаемые среда выполнения Windows, и указан соответствующий тип в C#, Visual Basic и C++.

Тип данных JavaScript C# VB C++
Boolean Boolean bool Boolean bool
Byte Число byte Byte unsigned char
Char String char Char unsigned char
Char16 String char Char wchar_t
DateTime Дата DateTimeOffset DateTimeOffset DateTime
Double Число double Double double
Guid String Guid Guid Guid
Int16 Число short Short short
Int32 Число int Integer int
Int64 Число long Long __int64
Объект Объект object Объект Object^
Point Point Point Point Point
Rect Rect Rect Rect Rect
Single Число float Single float
Размер Размер Размер Размер Размер
String String строка String String^
TimeSpan Число TimeSpan TimeSpan TimeSpan
UInt8 Число byte Byte unsigned char
UInt16 Число ushort UShort unsigned short
UInt32 Число uint UInteger unsigned int
UInt64 Число ulong ULong unsigned __int64
URI URI URI URI Uri^
Void Не определено void Void void

 

В следующей таблице указаны типы .NET, соответствующие среда выполнения Windows типам данных.

Среда выполнения Windows .NET
Boolean System.Boolean
Byte System.Byte
Char System.Char
Char16 System.Char
DateTime System.DateTimeOffset
Double System.Double
Guid System.Guid
Int16 System.Int16
Int32 System.Int32
Int64 System.Int64
Объект System.Object
Single System.Single
String System.String
TimeSpan System.TimeSpan
UInt8 System.Byte
UInt16 System.UInt16
UInt32 System.UInt32
UInt64 System.UInt64
URI System.Uri
Void System.Void