Advertisement
nahidjamalli

Lesson #14

Apr 26th, 2020
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.IO;
  3.  
  4. namespace CSharpConsoleApp
  5. {
  6.     class MyClass
  7.     {
  8.         static void Main()
  9.         {
  10.             string fileName = "text.txt"; // faylın adı
  11.             StreamWriter writer = new StreamWriter(fileName, false, System.Text.Encoding.UTF32); // axın yaradılır
  12.             writer.WriteLine("Gürcüstan bir dövlətdir."); // fayla məlumat yazılır
  13.             writer.Close(); // axın bağlanılır.
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement