Greetings Dev.to community!
I'm Ruslanbek, a passionate 1st-year student pursuing my studies at PDP University. Currently immersed in the realms of programming fundamentals, our curriculum has led us to the intriguing domain of Object-Oriented Programming (OOP), where we are delving into the intricacies of C#.
The journey into OOP has been nothing short of captivating. These concepts carry an inherent complexity, yet their allure lies in unraveling the structured approach they offer to problem-solving. Amidst this exploration, our guide through this terrain is none other than our esteemed teacher, Ilyoskhuja Ikromkhujayev (https://www.linkedin.com/in/ilyoskhuja/). His adept explanation and guidance have been instrumental in shedding light on these topics, making them comprehensible and exciting.
Here's a glimpse into our current focus in the form of snippets encapsulating the essence of our OOP lessons:
public class Car
{
public string Make { get; set; }
public string Model { get; set; }
public int Year { get; set; }
public Car(string make, string model, int year)
{
Make = make;
Model = model;
Year = year;
}
public void StartEngine()
{
Console.WriteLine("Engine started!");
}
}
The above code demonstrates a basic C# class 'Car' that encapsulates the properties and behavior of a car object using OOP principles.
As we progress through our studies, the depth and potential of OOP continue to unfold, fueling our curiosity and enthusiasm for programming.
Thank you for joining me on this glimpse into our learning journey at PDP University. Stay tuned for more insights and discoveries from the world of programming.
Best regards, Ruslanbek

Top comments (0)