Segmenter.Base.Collectors.FrequencyDictionary.this C# (CSharp) Метод

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

Returns the list of positions to which the specified word is mapped, or null if this FrequencyDictionary contains no mapping for the word.
public this ( string str ) : List
str string the word whose associated the list of positions is to be returned
Результат List
        public List<int> this[string str]
        {
            get { return new List<int>(words[str]); }
        }