Namespace
Firdavs Mukhsimov
Posted on October 11, 2024
a)Namespace nima?
Namespace (nomlar maydoni)-Bu dasturdagi sinflar,
interfeyslar, strukturalar va boshqa elementlarni
mantiqiy guruhlash uchun foydalaniladigan tushuncha.
b)Namespace qanday ishlatiladi?
namespace Transportlar
{
class Avtomobil
{
public string model;
public void Yurish()
{
Console.WriteLine(model + " harakatlanmoqda.");
}
}
c)Quydagi kodni tahlil qiling:
using System;
namespace MyNamespace
{
class Program
{
static void Main(stringll args)
{
Console WriteLine ("Hello World!");
}
}
}
๐ ๐ช ๐
๐ฉ
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
webdev Understanding HTTP, Cookies, Email Protocols, and DNS: A Guide to Key Internet Technologies
November 30, 2024