Namespace

firdavs_mukhsimov_9f62550

Firdavs Mukhsimov

Posted on October 11, 2024

Namespace

a)Namespace nima?

Namespace (nomlar maydoni)-Bu dasturdagi sinflar,
 interfeyslar, strukturalar va boshqa elementlarni
 mantiqiy guruhlash uchun foydalaniladigan tushuncha.
Enter fullscreen mode Exit fullscreen mode

b)Namespace qanday ishlatiladi?

namespace Transportlar
{
    class Avtomobil
    {
        public string model;
        public void Yurish()
        {
            Console.WriteLine(model + " harakatlanmoqda.");
        }
    }

Enter fullscreen mode Exit fullscreen mode

c)Quydagi kodni tahlil qiling:

using System;
namespace MyNamespace
{
  class Program
  {
    static void Main(stringll args)
    {
      Console WriteLine ("Hello World!");
    }
  }  
}
Enter fullscreen mode Exit fullscreen mode
๐Ÿ’– ๐Ÿ’ช ๐Ÿ™… ๐Ÿšฉ
firdavs_mukhsimov_9f62550
Firdavs Mukhsimov

Posted on October 11, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

ยฉ TheLazy.dev

About