コード例 #1
0
ファイル: Context.cs プロジェクト: librg/librg-csharp
        protected virtual void Dispose(bool disposing)
        {
            if (_ctx != null)
            {
                if (initialized)
                {
                    Free();
                }

                Native.librg_release(_ctx);
                _ctx = null;
            }
        }