The callback class hierarchy for Java and .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 .NET correspond very closely to those in the Java API. However, the name of a .NET class does not begin with Ilo. Furthermore, the names of .NET methods are capitalized (that is, they begin with an uppercase character) according to .NET conventions.
For example, the corresponding callback class in .NET is Cplex.ContinuousCallback.
|