Запись строки в файл не работает, хотя код корректный - C#
Формулировка задачи:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { FileStream f = new FileStream(@"D:\t.txt", FileMode.Create,FileAccess.ReadWrite); StreamWriter fIn = new StreamWriter(f); string txt = "123"; fIn.WriteLine(txt); } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { FileStream f = new FileStream(@"D:\t.txt", FileMode.Create,FileAccess.ReadWrite); BinaryWriter fIn = new BinaryWriter(f); string txt = "123"; fIn.Write(txt); } } }
Решение задачи: «Запись строки в файл не работает, хотя код корректный»
textual
Листинг программы
fIn.Close();
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д