다음 코드는 C#에서 텍스트 파일을 생성하고, 파일에 텍스트를 저장하는 코드입니다. 1. File 정적(static) 클래스 사용하기 using System; using System.IO; public class Program { public static void Main() { string textfile = @"c:\temp\MyTest.txt"; // 파일이 존재하지 않으면 if (!File.Exists(textfile)) { // Create a file to write to. using (StreamWriter sw = File.CreateText(textfile)) { sw.WriteLine("Hello"); sw.WriteLine("And"); sw.WriteLine("Welcome"); }..