BugTracker.Model.Bug.this C# (CSharp) Метод

this() публичный Метод

public this ( string columnName ) : string
columnName string
Результат string
        public string this[string columnName]
        {
            get
            {
                if (columnName == "Description")
                {
                    return String.IsNullOrEmpty(Description) ? "Description may not be empty" : null;
                }

                return null;
            }
        }
Bug