FreeLibrary() public method

public FreeLibrary ( ) : bool
return bool
Example #1
0
 public bool FreeLibrary()
 {
     _IsLoaded = false;
     if (_wrapper != null)
     {
         return(_wrapper.FreeLibrary());
     }
     return(true);
 }
Example #2
0
 public bool FreeLibrary()
 {
     return(m_wrapper.FreeLibrary());
 }