You can use the following work around in V12.5:
string version = string.Format(
"{0}.{1}.{2}.{3}",
CplexStubs.CPX_VERSION_VERSION,
CplexStubs.CPX_VERSION_RELEASE,
CplexStubs.CPX_VERSION_MODIFICATION,
CplexStubs.CPX_VERSION_FIX);
System.Console.WriteLine("Using CPLEX Version: " + version);
These are undocumented fields in the class and there is no guarantee that they will exist in the next version or fix pack. However, in the next version/fix pack the Version property should be fixed.
#CPLEXOptimizers#DecisionOptimization