Interface IVBTypedValue<VBTValue, TValue>
Represents any run-time typed value that can be represented with a managed (.net) value.
public interface IVBTypedValue<VBTValue, TValue> : IEquatable<IVBTypedValue<VBTValue, TValue>> where VBTValue : VBTypedValue
Type Parameters
VBTValueThe
VBTypetype of the value.TValueThe underlying managed type of the value.
- Inherited Members
Remarks
Mandates an implementation of IEquatable<T> for the specified VBTypedValue
Properties
Value
Gets the underlying managed value corresponding to this typed value.
TValue Value { get; }
Property Value
- TValue