FreeLibrary() приватный Метод

private FreeLibrary ( IntPtr handle ) : bool
handle System.IntPtr
Результат bool
Пример #1
0
 void Dispose(bool manual)
 {
     if (manual)
     {
         if (dll != IntPtr.Zero)
         {
             Functions.FreeLibrary(dll);
             dll = IntPtr.Zero;
         }
     }
 }