Table of Contents

Enum NumericTypeCode

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

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 = 6

An unsigned 8-bit integer. Maps to Byte.

Decimal = 15

A high-precision decimal number. Maps to Decimal.

Double = 14

A double-precision floating-point number. Maps to Double.

Int16 = 7

A signed 16-bit integer. Maps to Int16.

Int32 = 9

A signed 32-bit integer. Maps to Int32.

Int64 = 11

A signed 64-bit integer. Maps to Int64.

SByte = 5

A signed 8-bit integer. Maps to SByte.

Single = 13

A single-precision floating-point number. Maps to Single.

UInt16 = 8

An unsigned 16-bit integer. Maps to UInt16.

UInt32 = 10

An unsigned 32-bit integer. Maps to UInt32.

UInt64 = 12

An unsigned 64-bit integer. Maps to UInt64.