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

コード例 #1
0
ファイル: FelicaLib.cs プロジェクト: okajun/felicalib
 public void Dispose()
 {
     if (_pModule != IntPtr.Zero)
     {
         BindDLL.FreeLibrary(_pModule);
     }
 }