Upscaledb.Database.GetLastError C# (CSharp) Method

GetLastError() public method

Returns the last error code
This method wraps the native ups_db_get_error function.
public GetLastError ( ) : int
return int
        public int GetLastError()
        {
            lock (this) {
            return NativeMethods.GetLastError(handle);
              }
        }