LuaInterface.LuaObjectPool.this C# (CSharp) Method

this() public method

public this ( int i ) : object
i int
return object
        public object this[int i]
        {
            get
            {
                if (i > 0 && i < count)
                {
                    return list[i].obj;
                }

                return null;
            }
        }