How to explain "Sum {0}"?
{0} whether its indicating any position or index where output to be print?
Printable View
How to explain "Sum {0}"?
{0} whether its indicating any position or index where output to be print?
Usually that format is used with some kind of output or the String.Format command. The {0} is indicating that the first variable passed will be ouput in that position. So:
would yieldCode:String.Format("Sum {0}", 125);
Code:Sum 125
I am not sure for that question you are giving this answer ?