FelicaLib.BindDLL.FreeLibrary C# (CSharp) 메소드

FreeLibrary() 개인적인 메소드

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

Usage Example

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