FreeLibrary() private method

private FreeLibrary ( IntPtr hModule ) : bool
hModule System.IntPtr
return bool
示例#1
0
 public void Dispose()
 {
     if (_pModule != IntPtr.Zero)
     {
         BindDLL.FreeLibrary(_pModule);
     }
 }