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;
         }
     }
 }