Simple question: If you have a string x, to initialize it you simple do one of the following:
string x
string x = String.Empty;
or
If you really need an instance of T and not a default null value for reference types, use:
Activator.CreateInstance()