How can I make a 'struct' Nullable by definition?
12:21 20 Dec 2010
struct AccountInfo
{
   String Username;
   String Password;
}

now if I want to have a Nullable instance I should write:

Nullable myAccount = null;

But I want make the struct Nullable by nature and it can be used like this (without use of Nullable):

AccountInfo myAccount = null;
c# struct nullable