LuaInterface.LuaObjectPool.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            list.Clear();
            head = null;
            count = 0;
        }

Usage Example

示例#1
0
        public void Dispose()
        {
            objects.Clear();

#if !MULTI_STATE
            _translator = null;
#endif
        }
All Usage Examples Of LuaInterface.LuaObjectPool::Clear