Enum CsKnownLanguageType
Enumeration that identifies well know types used by the C# language.
Namespace: CodeFactory.WinVs.Models.CSharp
Assembly: CodeFactory.WinVs.dll
Syntax
public enum CsKnownLanguageType
Fields
Name | Description |
---|---|
Boolean | The well known data type of bool |
Character | The well know data type of char that stores a character. |
DateTime | Well known type that holds a date and a time DateTime |
Decimal | The well known data type is a decimal floating point number ±1.0 x 10-28 to ±7.9228 x 10 to the 28 power decimal |
Double | The well known data type is a double precision floating point number ±5.0 × 10−324 to ±1.7 × 10 to the 308 power double |
NotWellKnown | The language type definition is not well known (Default Value) |
Object | Implements the well known type object. |
PlatformPointer | Well known type that represents a pointer that is platform specific UIntPtr |
Pointer | Well known type that is used to represent the location of a pointer or handle IntPtr |
Signed16BitInteger | The well known data type is a signed 16 bit integer -32,768 to 32,767 short |
Signed32BitInteger | The well known data type is a signed 32 bit integer -2,147,483,648 to 2,147,483,647 int |
Signed64BitInteger | The well known data type is a signed 64 bit integer -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 long |
Signed8BitInteger | The well know data type is a signed 8 bit integer -128 to 127 sbyte. |
Single | The well known data type is a single precision floating point number ±1.5 x 10−45 to ±3.4 x 10 to the 38 power float |
String | Well know type that contains an immutable sequence of UTF-16 code units string |
UnSigned8BitInteger | The well know data type is an unsigned 8 bit integer 0 to 255 byte |
Unsigned16BitInteger | The well know data type is a unsigned 16 bit integer 0 to 65,535 ushort |
Unsigned32BitInteger | The well know data type is a unsigned 32 bit integer 0 to 4,294,967,295 uint |
Unsigned64BitInteger | The well known data type is a unsigned 64 bit integer 0 to 18,446,744,073,709,551,615 ulong |
Void | Is a special return type that specifies no value will be returned. void |