Scalien.SafeDLLHandle.ReleaseHandle C# (CSharp) Method

ReleaseHandle() private method

private ReleaseHandle ( ) : bool
return bool
        protected override bool ReleaseHandle()
        {
            // This is a hack to free all references of the DLL
            while (NativeMethods.FreeLibrary(handle)) ;

            return true;
        }