Class VBLongPtrType_x86
A VBIntrinsicType<T> representing the LongPtr data type in the context of a 32-bit execution environment.
public record VBLongPtrType_x86 : VBIntrinsicType<int>, IEquatable<VBType>, IEquatable<VBIntrinsicType>, IEquatable<VBIntrinsicType<int>>, IEquatable<VBLongPtrType_x86>
- Inheritance
-
VBLongPtrType_x86
- Implements
- Inherited Members
Remarks
The managed type of a value of this data type is int.
Constructors
VBLongPtrType_x86()
A VBIntrinsicType<T> representing the LongPtr data type in the context of a 32-bit execution environment.
public VBLongPtrType_x86()
Remarks
The managed type of a value of this data type is int.
Properties
BitnessAwarePtrSize
public static int BitnessAwarePtrSize { get; }
Property Value
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.
MaxValue
Gets the maximum representable value for this data type.
public static VBLongPtrValue MaxValue { get; }
Property Value
MinValue
Gets the minimum representable value for this data type.
public static VBLongPtrValue MinValue { get; }
Property Value
TypeInfo
The LongPtr data type (32-bit).
public static VBLongPtrType_x86 TypeInfo { get; }
Property Value
Zero
Gets the value 0 (zero) representation of this data type.
public static VBLongPtrValue Zero { get; }
Property Value
Methods
CreateValue(IBindingHandle)
Creates a value of this type bound to handle.
public override VBTypedValue CreateValue(IBindingHandle handle)
Parameters
handleIBindingHandle
Returns
Remarks
The base implementation throws: only types that can hold a runtime value override this
(matches the intent of the removed VBTypedValueFactory.CreateValue(VBType) switch,
which returned null for the rest).