Iqra Technology

C# Namespaces

❮ Previous Next ❯ Namespaces in C# A namespace in C# is a way to organize code into groups. It’s like a container that holds classes, structs, interfaces, enums, and delegates, helping to keep related code together and avoid name conflicts. Structure of namespace namespace Namespacename  {      [access_modifier] class ClassName    {      […]

C# Namespaces Read More »

C# Interface

❮ Previous Next ❯ Interfaces in C# An interface in C# is a blueprint or contract that defines a set of methods, properties, events, or indexers that a class or struct must implement. It only specifies the names and signatures of members without providing any actual code or implementation for them. When a class implements

C# Interface Read More »

C# Abstract

❮ Previous Next ❯ Abstract Class in C# In C#, an abstract class is a class that is declared with the keyword abstract. It can have both abstract methods (methods without a body) and non-abstract methods (methods with a body). An abstract class cannot be instantiated (you can’t create an object directly from it). Instead,

C# Abstract Read More »

C# Sealed

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# Sealed Read More »

C# Polymorphism

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# Polymorphism Read More »

C# Base

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# Base Read More »