0

How can I convert the double value of a jni4net proxy class Object to .NET double? Simple Convert.ToDouble(o) does not work, because it is nt of type IConvertible.

alex555
  • 1,676
  • 4
  • 27
  • 45

1 Answers1

0

Try to cast it to java.lang.Double on .NET side first. then the conversion to double is defined afaik.

Pavel Savara
  • 3,427
  • 1
  • 30
  • 35