Iqra Technology

C# Method Overriding

❮ Previous Next ❯ Method Overriding Method overriding in C# is a feature of object-oriented programming that allows a subclass to provide a specific implementation of a method that is already defined in its superclass. This means that the subclass method replaces the implementation of the same method in the superclass. To perform method overriding […]

C# Method Overriding Read More »

C# Member Overloading

❮ Previous Next ❯ C# Member Overloading Having two or more methods with the same name but different parameters is known as method overloading in C#. Method overloading allows you to define multiple methods within the same class that share the same name. But don’t be fooled by the identical names! These methods are differentiated

C# Member Overloading Read More »

C# Aggregation

HTML CSS Bootstrap JavaScript C# SQL Salesforce Admin Exercise Study Material Live Session ✔ C# Tutorial C# Features .Net Framework Introduction to IDE C# Example C# Program Excecution ✔ C# Basic C# Variables C# Identifiers C# Data Types C# Numeric C# Floating Point C# Math Class C# String C# Escape Sequence C# Verbatim Strings C#

C# Aggregation Read More »

C# Inheritance

❮ Previous Next ❯ Inheritance in C# What is Inheritance? Inheritance is a key idea in object-oriented programming (OOP). It lets one class use the features and behaviours of another class. This creates a parent-child relationship between classes. How Does It Work? In C#, you can create a base class (or parent class) with common

C# Inheritance Read More »

C# Properties

❮ Previous Next ❯ Properties and Encapsulation Before going on properties let’s have a look at why the concept of properties came into C#. This is because of two reasons: If the members of a class are private then how another class in C# will be able to read, write, or compute the value of that

C# Properties Read More »

C# Destructor & this

HTML CSS Bootstrap JavaScript C# SQL Salesforce Admin Study Material Live Session ✔ C# Tutorial C# History C# Features .Net Framework Introduction to IDE C# Example C# Program Excecution ✔ C# Basic C# Variables C# Identifiers C# Data Types C# Numeric C# Floating Point C# Math Class C# String C# Escape Sequence C# Verbatim Strings

C# Destructor & this Read More »