关于表示空字符串的最佳实践c#


Best practice for denoting empty string - C#

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicates:
In C#, should I use string.Empty or String.Empty or “” ?
What is the difference between String.Empty and “”

我应该使用:

1
2
3
 - string.Empty
 - String.Empty
 -""

当我想从一个方法返回一个空字符串时(或者在其他任何地方)。


string.empty&string.empty完全相同。