G
Guest
I have come across a behaviour with the decimal.ToString method which i didn't expect, if i run the following console ap
using System
public class Ap
public static void Main(string[] args
decimal _decValue
foreach(string _arg in args
_decValue = decimal.Parse(_arg);
Console.WriteLine(_decValue.ToString())
with the following arg
1 1.00 1.000
I will get output as follow
1
1.00
1.000
I would have expecte
Can't see anything in the SDK explaining this. If anyone knows why this is so i would appreciate a pointer
Thanks in advanc
Pa
using System
public class Ap
public static void Main(string[] args
decimal _decValue
foreach(string _arg in args
_decValue = decimal.Parse(_arg);
Console.WriteLine(_decValue.ToString())
with the following arg
1 1.00 1.000
I will get output as follow
1
1.00
1.000
I would have expecte
Can't see anything in the SDK explaining this. If anyone knows why this is so i would appreciate a pointer
Thanks in advanc
Pa