Iqra Technology

C# Constructor

❮ Previous Next ❯ Constructor A constructor is like a special function inside the blueprint (class) that gets called when you create a new object based on that blueprint. Note:  that the constructor’s name must match the class name, and it cannot have a return type (like void or int).Also, note that the constructor is called when the object is […]

C# Constructor Read More »

C# Structs & Enum

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# Structs & Enum Read More »

C# static

❮ Previous Next ❯ Static Keyword in C# In C#, static is a keyword or modifier that belongs to the type rather than an instance. This means that an instance is not required to access static members. In C#, static members can include fields, methods, constructors, classes, properties, operators, and events. To access static members

C# static Read More »

C# Array class

❮ Previous Next ❯ Array class in C# The C# provides an Array class to deal with array-related operations. It provides methods for creating, manipulating, searching, and sorting elements of an array. This class works as the base class for all arrays in the .NET programming environment. Below are the commonly used methods of array

C# Array class Read More »