I need thousand separator in C# code or VB which I will be using in BluePrism code stage. One of the questions in stack overflow gave me the solution upto some extent but not complete.
I am having more than two digits after decimal point and I need the number to have thousand separator and retain all the decimal values.
Out = String.Format("{0:N}%", In);
If In is -137855027.5123456 Out value is -137,855,027.51%, but I need all the values after the decimal point.