Class WellKnownTypes
Data class that holds the c# syntax definition for well know data types.
Inherited Members
Namespace: CodeFactory.DotNet.CSharp.FormattedSyntax
Assembly: CodeFactory.DotNet.dll
Syntax
public static class WellKnownTypes
Fields
| Improve this Doc View SourceBoolean
Syntax for a Boolean data type.
Declaration
public const string Boolean = "bool"
Field Value
Type | Description |
---|---|
string |
Byte
Syntax for a Byte data type.
Declaration
public const string Byte = "byte"
Field Value
Type | Description |
---|---|
string |
Character
Syntax for a Char data type.
Declaration
public const string Character = "char"
Field Value
Type | Description |
---|---|
string |
Datetime
Syntax for a DateTime data type.
Declaration
public const string Datetime = "DateTime"
Field Value
Type | Description |
---|---|
string |
Decimal
Syntax for a Decimal data type.
Declaration
public const string Decimal = "decimal"
Field Value
Type | Description |
---|---|
string |
Double
Syntax for a Double data type.
Declaration
public const string Double = "double"
Field Value
Type | Description |
---|---|
string |
Float
Syntax for a Single data type.
Declaration
public const string Float = "float"
Field Value
Type | Description |
---|---|
string |
Int
Syntax for a Int32 data type.
Declaration
public const string Int = "int"
Field Value
Type | Description |
---|---|
string |
Long
Syntax for a Int64 data type.
Declaration
public const string Long = "long"
Field Value
Type | Description |
---|---|
string |
Object
Syntax for a Object data type.
Declaration
public const string Object = "object"
Field Value
Type | Description |
---|---|
string |
PlatformPointer
Syntax for a UIntPtr data type.
Declaration
public const string PlatformPointer = "UIntPtr"
Field Value
Type | Description |
---|---|
string |
Pointer
Syntax for a IntPtr data type.
Declaration
public const string Pointer = "IntPtr"
Field Value
Type | Description |
---|---|
string |
SByte
Syntax for a SByte data type.
Declaration
public const string SByte = "sbyte"
Field Value
Type | Description |
---|---|
string |
Short
Syntax for a Int16 data type.
Declaration
public const string Short = "short"
Field Value
Type | Description |
---|---|
string |
String
Syntax for a String data type.
Declaration
public const string String = "string"
Field Value
Type | Description |
---|---|
string |
Uint
Syntax for a UInt32 data type.
Declaration
public const string Uint = "uint"
Field Value
Type | Description |
---|---|
string |
Ulong
Syntax for a UInt64 data type.
Declaration
public const string Ulong = "ulong"
Field Value
Type | Description |
---|---|
string |
Ushort
Syntax for a UInt16 data type.
Declaration
public const string Ushort = "ushort"
Field Value
Type | Description |
---|---|
string |