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

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

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

unit testing - How to mock PreferenceManager in Android? -