Class VBLongLongType
A VBNumericType<T> representing the LongLong data type.
public record VBLongLongType : VBNumericType<long>, IEquatable<VBType>, IEquatable<VBIntrinsicType>, IEquatable<VBNumericType>, IEquatable<VBNumericType<long>>, IIntegralNumericType, INumericType, IEquatable<VBLongLongType>
- Inheritance
-
VBLongLongType
- Implements
- Inherited Members
Remarks
The managed type of a value of this data type is long.
💥 Declarations of this data type are statically invalid in a 32-bit environment.
👉 Implements IIntegralNumericType.
Constructors
VBLongLongType()
A VBNumericType<T> representing the LongLong data type.
public VBLongLongType()
Remarks
The managed type of a value of this data type is long.
💥 Declarations of this data type are statically invalid in a 32-bit environment.
👉 Implements IIntegralNumericType.
Properties
DefaultValue
Gets the default value for this data type.
public override VBTypedValue DefaultValue { get; }
Property Value
Remarks
⚠️ Derived types must back the implementation of this property with a thread-safe private static readonly Lazy<T>.
Failure to do so would lock up the static context initialization of the StaticSymbol symbols.
ManagedMaxValue
Gets the maximum representable managed (.net) value for this data type.
public override double ManagedMaxValue { get; }
Property Value
ManagedMinValue
Gets the minimum representable managed (.net) value for this data type.
public override double ManagedMinValue { get; }
Property Value
MaxValue
Gets the maximum representable value for this data type.
public static VBLongLongValue MaxValue { get; }
Property Value
MinValue
Gets the minimum representable value for this data type.
public static VBLongLongValue MinValue { get; }
Property Value
Size
The size (in bytes) of a value of this type.
public override int Size { get; }
Property Value
Remarks
Determines the length of the allocated memory space for a value of this type.
TypeInfo
The LongLong data type.
public static VBLongLongType TypeInfo { get; }
Property Value
Remarks
This type is statically invalid in a 32-bit environment.
Zero
Gets the value 0 (zero) representation of this data type.
public static VBLongLongValue Zero { get; }