Greetings everybody. I am sorry, if this was already asked before (searched in vain) or is really very simple, but i just can't get it. The MSDN definition of a
Nullable type, states, that it is defined in a following manner:
[SerializableAttribute]
public struct Nullable<T>
where T : struct, new()
So the question
…