c# make string null

C#
//String is a reference type and always nullable, 
//you don't need to do anything special. 
//Specifying that a type is nullable is necessary only for value types.

//Eg.
string varName = null;
Source

Also in C#: