C# Console.Write()

Tanım;

Write() metodu, Console ekranına çıktı vermek için kullanılan metoddur.


Giriş;

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace KodSozluk
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("KodSözlük");   

            Console.ReadKey();
        }     
    }
}


Çıkış;

KodSözlük