http://msdn.microsoft.com/ja-jp/library/ms908328.aspx http://msdn.microsoft.com/ko-kr/library/s8s7t687(VS.80).aspx 잘 안나오네 -_-;; MFC 의 CString.Format() 을 쓰다가 C#의 String.Format() 쓰니까 좀 헷갈려서. 정리해 버린다. MFC : ExampleCString str; str.Format(_T("Floating point: %.2f\n"), 12345.12345); _tprintf(_T("%s"), (LPCTSTR) str); str.Format(_T("Left-justified integer: %.6d\n"), 35); _tprintf(_T("%s"), (LPCTSTR) s..