Dispose() public method

public Dispose ( ) : void
return void
Ejemplo n.º 1
0
 public void Dispose()
 {
     if (dwUnionChoice == UnionChoice.File)
     {
         var info = new WINTRUST_FILE_INFO();
         Marshal.PtrToStructure(pInfoStruct, info);
         info.Dispose();
         Marshal.DestroyStructure(pInfoStruct, typeof(WINTRUST_FILE_INFO));
     }
     Marshal.FreeHGlobal(pInfoStruct);
 }
Ejemplo n.º 2
0
 public void Dispose()
 {
     if (dwUnionChoice == UnionChoice.File)
     {
         var info = new WINTRUST_FILE_INFO();
         Marshal.PtrToStructure(pInfoStruct, info);
         info.Dispose();
         Marshal.DestroyStructure(pInfoStruct, typeof(WINTRUST_FILE_INFO));
     }
     Marshal.FreeHGlobal(pInfoStruct);
 }