Error handling

Errors in the Gurobi .NET interface are handled through the .NET exception mechanism. In the example, all Gurobi statements are enclosed inside atryblock, and any associated errors would be caught by thecatchblock:


} catch (GRBException e) { Console.WriteLine("Error code: " + e.ErrorCode + ". " + e.Message); }