using System.Collections.Generic;
namespace _2023_11_10_array_to_file
static void Main(string[] args)
string[] stringArray = new string[] {
File.WriteAllLines("buah.txt", stringArray);
using (StreamReader sr = new StreamReader("buah.txt"))
string res = sr.ReadToEnd();