Mapsui.Providers.Feature.this C# (CSharp) Method

this() public method

public this ( string key ) : object
key string
return object
        public virtual object this[string key]
        {
            get { return _dictionary.ContainsKey(key) ? _dictionary[key] : null; }
            set { _dictionary[key] = value; }
        }