UnityEditor.EditorCache.this C# (CSharp) Method

this() public method

public this ( Object o ) : EditorWrapper
o Object
return EditorWrapper
        public EditorWrapper this[Object o]
        {
            get
            {
                this.m_UsedEditors[o] = true;
                if (this.m_EditorCache.ContainsKey(o))
                {
                    return this.m_EditorCache[o];
                }
                EditorWrapper wrapper3 = EditorWrapper.Make(o, this.m_Requirements);
                this.m_EditorCache[o] = wrapper3;
                return wrapper3;
            }
        }
    }