주의: C의 printf와 C#의 string.Format을 비교하는 글입니다. 특히, Console.WriteLine은 서식 방법이 많이 다릅니다. 유의해서 읽어주세요. 0. 기본적인 구조 C char* str = "Hello, World!"; printf("Formatted String: %s", str); /* Hello, World! */ C# string str = "Hello, World!"; string.Format("Formatted String: {0}", str); /* Hello, World! */ C는 printf 함수 자체에서 formatted string을 print하는 구조이지만, C#은 String의 Format 함수가 포맷팅을 제공한다. 또한 기본적으로 object형으로 캐..