🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Burak HABER / C# / Sınıf İçinde Geriye Değer Döndürmeyen Metotlar 1

1-) C# - Sınıf İçinde Geriye Değer Döndürmeyen Metotlar 1

program.cs

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace Ornek_Console

{

    class Program

    {

        static void Main(string[] args)

        {

            Mesaj msj = new Mesaj();

            msj.metin();

            Console.Read();

        }

    }

}


Mesaj.cs

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace Ornek_Console

{

    class Mesaj

    {

        public void metin()

        {

            Console.WriteLine("Merhaba Antalya");

            Console.Write("Merhaba Elezığ");

        }

    }

}



SS(Screen Sysrq)

 2021 Mart 11 Perşembe
 404