private static IntPtr dlsym(IntPtr handle, string symbol)
 {
     try
     {
         return(LibDlSo2.dlsym(handle, symbol));
     }
     catch (DllNotFoundException)
     {
         return(LibDl.dlsym(handle, symbol));
     }
 }