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:

Code:
        String.Format("Sum {0}", 125);
would yield
Code:
Sum 125