I was wondering if anyone knows how the C# compiler handles the following assignment:
int? myInt = null;
My assumption is that there is an
Something like:
public Nullable() { this.value = default(T); this.hasValue = false; }