コード例 #1
0
        public void Dispose()
        {
            if (disposed)
            {
                return;
            }

            if (safeHandle != null)
            {
                safeHandle.Dispose();
                safeHandle = null;
            }

            disposed = true;
        }
コード例 #2
0
ファイル: Dictionary.cs プロジェクト: LightningAA/godot
        /// <summary>
        /// Disposes of this <see cref="Dictionary"/>.
        /// </summary>
        public void Dispose()
        {
            if (_disposed)
            {
                return;
            }

            if (_safeHandle != null)
            {
                _safeHandle.Dispose();
                _safeHandle = null;
            }

            _disposed = true;
        }
コード例 #3
0
ファイル: Dictionary.cs プロジェクト: zhangshiqian1214/godot
 internal Dictionary(IntPtr handle)
 {
     safeHandle = new DictionarySafeHandle(handle);
 }
コード例 #4
0
ファイル: Dictionary.cs プロジェクト: zhangshiqian1214/godot
 internal Dictionary(DictionarySafeHandle handle)
 {
     safeHandle = handle;
 }
コード例 #5
0
ファイル: Dictionary.cs プロジェクト: zhangshiqian1214/godot
 public Dictionary()
 {
     safeHandle = new DictionarySafeHandle(godot_icall_Dictionary_Ctor());
 }