ขั้นแรก เพิ่มประโยค using ตามด้านล่าง
First, add using statement
- using System.IO.StreamWriter;
ขั้นที่สอง ประกาศและนิยามออบเจ็ค StreamWriter ใหม่ เพื่อเขียนไฟล์ข้อความไปที่ file_path
Second, declare and define new StreamWriter object to write text file at file_path
- StreamWriter file = new StreamWriter(file_path);
ขั้นที่สาม เขียนข้อความลงไฟล์ข้อความโดยใช้ Write หรือ WriteLine
Third, write some text to file using Write or WriteLine
- file.Write("Hello ");
- file.WriteLine("World!!!");
ขั้นสุดท้าย ปิดตัวเขียนไฟล์ด้วยฟังก์ชั่น Close
Last, close the file writer with Close function
- file.Close();
สิ่งสำคัญ: ถ้า file ไม่ถูกปิด ข้อความบรรทัดท้ายๆจะไม่ถูกเขียนลงไฟล์ และบรรทัดสุดท้ายที่ถูกเขียนจะไม่สมบูรณ์
Important: If file is not close then the last couple of lines are not written, and the last written line is incomplete
No comments:
Post a Comment