I'm converting some VBA code from Excel macro into C# and came across with this line of code.
VBA:
Format(12356, "#,###.00000")
How to translate this to C#?
I'm converting some VBA code from Excel macro into C# and came across with this line of code.
VBA:
Format(12356, "#,###.00000")
How to translate this to C#?
Copyright © 2021 Jogjafile Inc.
You can try,
ToString()with same format..Net Fiddle