Hi all,
I need to pass numeric value as a input.
my filed datatype is numeric(20, 8).
Example: my input is 1.8 but i need to send as 1.80000000 in C# code . can any one help on this.
one more example: input 454.89
expected output is: 454.89000000
how to get this output using c#.net.
Jenith ThakkarPosted Aug 10, 2018, 3:20 AM
string msg = string.Format("E format: {0:N8}",1.8);
Nitin SontakkePosted Aug 10, 2018, 2:59 AM