IRCRehberi.Net- Türkiyenin En iyi IRC ve Genel Forum Sitesi

IRCRehberi.Net- Türkiyenin En iyi IRC ve Genel Forum Sitesi (https://www.ircrehberi.net/)
-   Programlama (https://www.ircrehberi.net/programlama/)
-   -   C# Programının Genel Yapısı (https://www.ircrehberi.net/programlama/78447-c-programinin-genel-yapisi.html)

ExCaLuBuR 19 Temmuz 2021 18:50

C# Programının Genel Yapısı
 
C# programları bir veya daha fazla dosyadan oluşur. Her dosya sıfır veya daha fazla ad alanı içerir.

Ad alanı; sınıflar, yapılar, arabirimler, numaralar ve temsilciler veya diğer ad alanları gibi türleri içerir. Aşağıdaki örnek, bu öğelerin hepsini içeren bir C# programının iskeletidir.

PHP- Kodu:

// A skeleton of a C# program
using System;

// Your program starts here:
Console.WriteLine("Hello world!");

namespace 
YourNamespace
{
    class 
YourClass
    
{
    }

    
struct YourStruct
    
{
    }

    interface 
IYourInterface
    
{
    }

    
delegate int YourDelegate();

    
enum YourEnum
    
{
    }

    namespace 
YourNestedNamespace
    
{
        
struct YourStruct
        
{
        }
    }



Yukarıdaki örnek, programın giriş noktası için üst düzey deyimleri kullanır. Bu özellik C# 9'da eklendi. C# 9'dan önce, giriş noktası aşağıdaki örnekte gösterildiği gibi Main adlı statik bir yöntemdi:

PHP- Kodu:

// A skeleton of a C# program
using System;
namespace 
YourNamespace
{
    class 
YourClass
    
{
    }

    
struct YourStruct
    
{
    }

    interface 
IYourInterface
    
{
    }

    
delegate int YourDelegate();

    
enum YourEnum
    
{
    }

    namespace 
YourNestedNamespace
    
{
        
struct YourStruct
        
{
        }
    }

    class 
Program
    
{
        static 
void Main(string[] args)
        {
            
//Your program starts here...
            
Console.WriteLine("Hello world!");
        }
    }



Kaynak : [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]

She 25 Temmuz 2021 07:43

Emeğinize sağlık paylaşım için teşekkür ederiz


Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 09:12.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

Copyright ©2019 - 2023 | IRCRehberi