मानों के लिए स्ट्रिंग सरणी सेट करें -
string[] names = new string[] {"Jack", "Tom"};
अब फ़ोरैच ऐरे का उपयोग करते हुए, फ़ाइल में सामग्री लिखें -
using (StreamWriter sw = new StreamWriter("names.txt")) { foreach (string s in names) { sw.WriteLine(s); } }
फ़ाइल में टेक्स्ट लिखने के लिए स्ट्रीम की एक सरणी दिखाने वाला एक उदाहरण निम्नलिखित है -
उदाहरण
using System; using System.IO; namespace FileApplication { class Program { static void Main(string[] args) { string[] names = new string[] {"Jack", "Tom"}; using (StreamWriter sw = new StreamWriter("names.txt")) { foreach (string s in names) { sw.WriteLine(s); } } // Read and show each line from the file. string line = ""; using (StreamReader sr = new StreamReader("names.txt")) { while ((line = sr.ReadLine()) != null) { Console.WriteLine(line); } } Console.ReadKey(); } } }