다음과 같은 사전에서 :
Dictionary<string, string> openWith = new Dictionary<string, string>();
openWith.Add("txt", "notepad.exe");
openWith.Add("bmp", "paint.exe");
openWith.Add("dib", "paint.exe");
openWith.Add("rtf", "wordpad.exe");
Console.WriteLine("For key = \"rtf\", value = {0}.", openWith["rtf"]);
출력은 다음과 같습니다.
키 = "rtf"값 = wordpad.exe
무슨 {0}
뜻입니까?