Enum WellKnownLanguageType
Enumeration that identifies well know types used by various .net languages.
Namespace: CodeFactory.DotNet
Assembly: CodeFactory.DotNet.dll
Syntax
public enum WellKnownLanguageType
Fields
Name | Description |
---|---|
Boolean | The well known data type of Boolean |
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 Int16 |
Signed32BitInteger | The well known data type is a signed 32 bit integer -2,147,483,648 to 2,147,483,647 Int32 |
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 Int64 |
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 Single |
String | Well know type that contains an immutable sequence of UTF-16 code units String |
Unsigned16BitInteger | The well know data type is a unsigned 16 bit integer 0 to 65,535 UInt16 |
Unsigned32BitInteger | The well know data type is a unsigned 32 bit integer 0 to 4,294,967,295 UInt32 |
Unsigned64BitInteger | The well known data type is a unsigned 64 bit integer 0 to 18,446,744,073,709,551,615 UInt64 |
UnSigned8BitInteger | The well know data type is an unsigned 8 bit integer 0 to 255 Byte |
Void | Is a special return type that specifies no value will be returned. Void |