FelicaLib.BindDLL.FreeLibrary C# (CSharp) Method

FreeLibrary() private method

private FreeLibrary ( IntPtr hModule ) : bool
hModule System.IntPtr
return bool
        private static extern bool FreeLibrary(IntPtr hModule);

Usage Example

Exemplo n.º 1
0
 public void Dispose()
 {
     if (_pModule != IntPtr.Zero)
     {
         BindDLL.FreeLibrary(_pModule);
     }
 }