How to Make Structure as Null in C# ?
EMPLOYEE? objEmployee = null; EMPLOYEE stEmployee = objEmployee.GetValueOrDefault(); but this make stEmployee fields as null,but i want to make this structure as null. It shows stEmployee.FirstName = null,stEmployee.LastName = null
But i want to make stEmployee as null. How to achieve that ?
EMPLOYEEwithEMPLOYEE?. Also as a side note,EMPLOYEEdoesn't follow C# style rules and should beEmployeeinstead.