Enum NumericTypeCode
Represents strongly-typed identifiers for commonly used numeric primitive types. Provides a semantic layer over TypeCode for numeric-only classifications.
public enum NumericTypeCode
Fields
Byte = 6An unsigned 8-bit integer. Maps to Byte.
Decimal = 15A high-precision decimal number. Maps to Decimal.
Double = 14A double-precision floating-point number. Maps to Double.
Int16 = 7A signed 16-bit integer. Maps to Int16.
Int32 = 9A signed 32-bit integer. Maps to Int32.
Int64 = 11A signed 64-bit integer. Maps to Int64.
SByte = 5A signed 8-bit integer. Maps to SByte.
Single = 13A single-precision floating-point number. Maps to Single.
UInt16 = 8An unsigned 16-bit integer. Maps to UInt16.
UInt32 = 10An unsigned 32-bit integer. Maps to UInt32.
UInt64 = 12An unsigned 64-bit integer. Maps to UInt64.