System.ObjectExtensions.EmptyOrValue C# (CSharp) Метод

EmptyOrValue() публичный статический Метод

public static EmptyOrValue ( this obj ) : string
obj this
Результат string
        public static string EmptyOrValue(this object obj)
        {
            return obj == null ? String.Empty : obj.ToString();
        }