The callback class hierarchy for Java and C#.NET is exactly the same as the hierarchy for C++, but the class names differ, in that there is no I at the end. For example, the Java implementation class corresponding to the C++ class IloCplex::ContinuousCallbackI is IloCplex.ContinuousCallback .
The names of callback classes in C#.NET correspond very closely to those in the Java API. However, the name of a C#.NET class does not begin with Ilo. Furthermore, the names of C#.NET methods are capitalized (that is, they begin with an uppercase character) according to .NET conventions.
For example, the corresponding callback class in C#.NET is Cplex.ContinuousCallback.
|