DEV Community

Mushtariy
Mushtariy

Posted on

Class va Object

a) C# dasturlash tilida objectni qanday yaratasiz?

class o'zimizaxolagannom //sinf yaratish
{
    // Fields (ma'lumotlar)
    // Methods (harakatlar)
}
Enter fullscreen mode Exit fullscreen mode

b) Quyidagi kodda qanday xato bor?

class Person
{
    public string Name;
    public int Age;
}
Person p;
p.Name = "John";
Enter fullscreen mode Exit fullscreen mode

Javob: Person p emas Person p = new Person(); bo'ladi.

Top comments (0)

AWS GenAI LIVE image

How is generative AI increasing efficiency?

Join AWS GenAI LIVE! to find out how gen AI is reshaping productivity, streamlining processes, and driving innovation.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay