TicketImporter.TfsPriorityMap.this C# (CSharp) Method

this() public method

public this ( string lookUp ) : string
lookUp string
return string
        public string this[string lookUp]
        {
            get
            {
                var priority = "";
                if (string.IsNullOrWhiteSpace(lookUp) == false)
                {
                    priority = map[lookUp];
                }
                return priority;
            }
        }