What is the point of declaring variables with '?' mark?
class SomeType
{
}
SomeType a = null;
SomeType? b = null;
Is there any difference between variables a and b?
What is the point of declaring variables with '?' mark?
class SomeType
{
}
SomeType a = null;
SomeType? b = null;
Is there any difference between variables a and b?