String.Empty Поле
Определение
Представляет пустую строку.Represents the empty string. Это поле доступно только для чтения.This field is read-only.
public: static initonly System::String ^ Empty;
public static readonly string Empty;
staticval mutable Empty : string
Public Shared ReadOnly Empty As String
Значение поля
Комментарии
Значением этого поля является строка нулевой длины, "".The value of this field is the zero-length string, "".
В коде приложения это поле чаще всего используется в назначениях для инициализации строковой переменной в пустую строку.In application code, this field is most commonly used in assignments to initialize a string variable to an empty string. Чтобы проверить, является ли значение строки либо null
или String.Empty , используйте IsNullOrEmpty метод.To test whether the value of a string is either null
or String.Empty, use the IsNullOrEmpty method.