I want to show culture on integers, but "n"
number format gives me double format output.
Here is a small example
int i = 10000;
Console.WriteLine(i.ToString("n", CultureInfo.CreateSpecificCulture("en-US")));
This gives me out put as 10,000.00
I want output as 10,000
Workaround like modifying string is not what I need.
Is there any simple way to do this?