コード例 #1
0
ファイル: Function.cs プロジェクト: awesomedotnetcore/emgutf
 /// <summary>
 /// Release all the unmanaged memory associated with this Buffer
 /// </summary>
 protected override void DisposeObject()
 {
     if (IntPtr.Zero != _ptr)
     {
         TfInvoke.tfeDeleteFunction(ref _ptr);
     }
 }