Hi!
If I have a Nullable type variable, I can set its initial value using a quotation mark like this:
In the background an instance of the type Nullable(Of Integer) is created and its property named "value" is set to 4.
How can I create such a class/type? Can you please show me a pattern?
If I have a Nullable type variable, I can set its initial value using a quotation mark like this:
Code:
aNullableVariableOfInteger = 4
How can I create such a class/type? Can you please show me a pattern?
Comment