Class and Object
Asadbek-IT
Posted on October 13, 2024
Class bu ob'ektlar uchun shablon. Sinf ma'lumotlarva xatti-harakatlar to'plamidan iborat.
Ob'ekt bu sinfdan yaratilgan konkret nusxadir. Ob'ekt orqali sinfda aniqlangan ma'lumotlar va xatti-harakatlardan foydalanish mumkin.
class Car
{
public string Model;
public Car(string model);
{
Model = model;
}
}
Car myCar = new Car("Tesla");
Console.WriteLine(myCar.Model);\
javob: Tesla
💖 💪 🙅 🚩
Asadbek-IT
Posted on October 13, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
privacy Caught in the Crunch My Journey from Snacks to 2 Million Exposed Users Privacy
November 30, 2024
devchallenge Submission for the DevCycle Feature Flag Challenge: Feature Flag Funhouse
November 30, 2024