Getting Started with Object-Oriented Programming (OOP) in C#

Thungex
Getting Started with Object-Oriented Programming (OOP) in C#

Imagine you’ve got a toy box, and in it are a bunch of different toys—action figures, cars, blocks. Each toy has certain features: cars have wheels, blocks are stackable, and action figures have movable parts. But all of them belong to the same category, "toys." Now, think of object-oriented programming, or OOP, as a way of organizing code with that same logic. Instead of just putting toys in a box, OOP lets us put related pieces of code together in one place.

In C#, OOP is like grouping things in a way that makes sense and keeps everything organized. You don’t have bits of code floating all around. Instead, you keep related pieces together. With OOP, we talk about things like classes, objects, and encapsulation. These might sound like big words, but they’re just ways to keep your code simple and neat.

Classes: The Blueprints of Our Code

Think of a class like a blueprint for building a house. A blueprint doesn’t actually have any walls or doors itself—it just shows you what a house could look like. You can use the same blueprint to build multiple houses, and each house might look a bit different (different paint color, different furniture), but the basic design comes from the same plan.

In C#, a class is like that blueprint, except it’s for building objects. It’s a way to design something in code before actually creating it. When you write a class, you’re telling C# what something should look like or what actions it can do, but you haven’t actually made it yet.

Example:

public class Pet
{
    public string Name;
    public int Age;
}

In this code:

  • public class Pet means we’re creating a blueprint called Pet.
  • Inside this blueprint, we’re saying each pet will have a Name (which is a piece of text) and an Age (which is a number).

But remember, this Pet class doesn’t create any actual pets yet. It just describes what a pet should have.

Objects: Bringing Classes to Life

Now, classes are great and all, but they’re only blueprints. To actually see something in action, you need to make an object based on that class. Creating an object is like using the blueprint to build an actual house. The blueprint tells you how to make it, but the house is something real that you can touch (or, in our case, use in code).

Example:

Pet myPet = new Pet();
myPet.Name = "Buddy";
myPet.Age = 3;

Here’s what’s happening:

  • Pet myPet = new Pet(); is us saying, “Make a new pet based on the Pet class and call it myPet.”
  • myPet.Name = "Buddy"; and myPet.Age = 3; are setting specific details for our pet like giving it a name and an age.

Now, myPet is an actual pet we can work with. If we had more pets, we could create more objects from the same Pet class, and each one could have its own unique name and age.

Encapsulation: Keeping Details Neat and Tidy

When you hear the word "encapsulation," think of it like a protective layer around something—like a shell around an egg. The egg’s shell keeps everything inside safe and neat. In programming, encapsulation is a way to protect certain parts of code so that only the parts you want people to use are visible while other details stay hidden and safe.

Why is this helpful? Well, imagine you’re building a game where players have different levels. You might want to keep each player’s score private so no one can mess with it directly. Encapsulation helps you hide that score so it’s safe from being accidentally changed by other parts of the code.

Example:

public class Pet
{
    public string Name { get; set; }
    private int age;

    public int Age
    {
        get { return age; }
        set 
        {
            if (value >= 0) // Only allow non-negative ages
            {
                age = value;
            }
        }
    }
}

In this version:

  • public string Name { get; set; } lets anyone read or change the pet’s name.
  • private int age; hides the actual age field so it can’t be changed directly.
  • The Age property has a get and set that lets you control how the age is changed—only allowing positive numbers for age.

Encapsulation keeps things organized—it’s like saying “Here’s what you’re allowed to use, and I’ll handle the rest behind the scenes.”

Why Use OOP? Making Code That’s Easy to Work With

So why go through the trouble of using OOP? It might seem like extra work but using classes objects and encapsulation makes your code easier to understand maintain. Imagine you’re writing program that handles dozens of different pets—without OOP you’d have to keep track of each pet’s details separately which could get messy quickly.

With OOP you just create a Pet class once then you can create as many Pet objects as you need—each one will follow the same structure so you’ll always know exactly where to find each pet’s details.

Plus if you ever need to make change—like adding new feature to Pet—you only have to do it in one place—in the class. Every pet object you’ve already created will automatically get updated—this makes OOP great way save time keep your code organized.

Add More Power: Properties and Methods

Once you understand basics classes objects can start add more features—in OOP classes can hold not only data (like Name Age) but also actions that objects can perform—these actions are called methods.

Example:

public void Speak()
{
    Console.WriteLine($"{Name} says hello!");
}

Now each pet can “speak” whenever you call Speak() on it—here’s how you’d use it:

Example Usage:

Pet myPet = new Pet();
myPet.Name = "Buddy";
myPet.Speak(); // Output: Buddy says hello!

So let’s go over what we’ve covered:

  1. Classes: are blueprints that define what an object should look like.
  2. Objects: are real-life versions you create from classes.
  3. Encapsulation: helps protect certain parts of your code letting control what’s accessible.

With these basic OOP concepts you've got building blocks create organized reusable code—whether you're building game app or any kind software using OOP will make your work much easier manage.


If you're just getting started try creating few different classes on your own—for instance think something familiar like "Book" with properties Title Author Pages then try creating objects from this class experiment encapsulation make sure only certain details accessible.

The more practice more natural these concepts will feel—OOP isn’t just programming style—it’s way think about organizing information—with practice you'll find using classes objects encapsulation will make your code cleaner easier understand no matter how complex your projects get!

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.