Hi,
In C#.NET I try:
System.Environment.SetEnvironmentVariable("io.konik.stripTrailingZeros", "false");
still no trailing zeros...
I think it's not the same to:
java.lang.System.setProperty ( "io.konik.stripTrailingZeros", "false")
because
Configuration.INSTANCE.stripTrailingZeros() - returns true
and
Configuration.INSTANCE.getProperty("io.konik.stripTrailingZeros") returns null
Why stripTrailingZeros read only property in Configuration.java?
How to set this property in C#.NET?
Thank you in advance!