BelhardTraining.LessonIO.MainForm.GetValue C# (CSharp) Метод

GetValue() приватный статический Метод

private static GetValue ( IShellProperty value ) : string
value IShellProperty
Результат string
        private static string GetValue(IShellProperty value)
        {
            if (value == null || value.ValueAsObject == null)
            {
                return String.Empty;
            }

            return value.ValueAsObject.ToString();
        }