FelicaLib.BindDLL.FreeLibrary C# (CSharp) Méthode

FreeLibrary() private méthode

private FreeLibrary ( IntPtr hModule ) : bool
hModule System.IntPtr
Résultat bool
        private static extern bool FreeLibrary(IntPtr hModule);

Usage Example

Exemple #1
0
 public void Dispose()
 {
     if (_pModule != IntPtr.Zero)
     {
         BindDLL.FreeLibrary(_pModule);
     }
 }