System.Xml.Serialization.LocalScope.this C# (CSharp) Method

this() public method

public this ( string key ) : LocalBuilder
key string
return System.Reflection.Emit.LocalBuilder
        public LocalBuilder this[string key]
        {
            get
            {
                LocalBuilder value;
                TryGetValue(key, out value);
                return value;
            }
            set
            {
                _locals[key] = value;
            }
        }