ralphtrent
Programmer
Hello I need to format int,12345678 as 1.23.45.678
What style can I use?
I have tried several and nothing is working
I do not want to have to style the string manually. I was hoping something like this would work:
but it doesn't.
Thanks,
RalphTrent
What style can I use?
I have tried several and nothing is working
I do not want to have to style the string manually. I was hoping something like this would work:
Code:
string.Format("{0:#.##.##.###}", 12345678)
Thanks,
RalphTrent