AGS.Editor.NativeProxy.FreeLibrary C# (CSharp) Метод

FreeLibrary() приватный Метод

private FreeLibrary ( IntPtr hModule ) : bool
hModule System.IntPtr
Результат bool
        public static extern bool FreeLibrary(IntPtr hModule);

Usage Example

Пример #1
0
 public void Dispose()
 {
     if (_dllHandle != IntPtr.Zero)
     {
         if (_enabled)
         {
             StopPlugin();
         }
         NativeProxy.FreeLibrary(_dllHandle);
         _dllHandle = IntPtr.Zero;
     }
 }