using System;
using System.Collections.Generic;
using System.Text;namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int myInteger;
            string myString;
            myInteger = 17;
            myString = "\"myInteger\"is:";
            Console.WriteLine("{0},{1} ",myString ,myInteger);
        }
    }
}vs2005下运行这段程序后结果是
"myInteger"is:,17问题在于结果中","是哪里来的?是vs2005固有的吗?