BugTracker.Model.Bug.this C# (CSharp) Method

this() public method

public this ( string columnName ) : string
columnName string
return string
        public string this[string columnName]
        {
            get
            {
                if (columnName == "Description")
                {
                    return String.IsNullOrEmpty(Description) ? "Description may not be empty" : null;
                }

                return null;
            }
        }
Bug