ברוכים הבאים לאתר השאלות והתשובות. מקום בו תוכלו לשאול כל שאלה ולקבל תשובות מהקהילה. יצירת קשר במייל aviboots(AT)netvision.net.il

התגיות הפופולריות ביותר

c#

StreamWriter כיצד לכתוב לקובץ טקסט בעזרת

0 אהבו 0 לא אהבו
43 views
asked Oct 20, 2013 in C# תכנות על-ידי אנונימי

תשובה אחת

0 אהבו 0 לא אהבו

using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            using (StreamWriter writer = new StreamWriter("textfile.txt", false))
            {
                writer.WriteLine("The text in my text file");
            }
        }
    }
}

Laser Company השתלת שיער

answered Oct 22, 2013 על-ידי avibootz (3,230 נקודות)
...