c# - Difference between string.Empty and "" -


possible duplicate:
in c#, should use string.empty or string.empty or “” ?

is there difference in c# between following declarations...

private string m_port = string.empty; 

or...

private string m_port = ""; 

is coding standard makes neater?

just coding standard...

http://msdn.microsoft.com/en-us/library/system.string.empty%28vs.80%29.aspx


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -