1. Home
  2. Docs
  3. C# Programming
  4. Basics

Basics

C# (pronounced as C-sharp) is a modern, object-oriented programming language developed by Microsoft as part of its .NET initiative. It was first introduced in 2000 and has since become a popular language for developing various types of applications, including desktop, web, and mobile applications. In this blog, we will cover the basics of C# programming language that every beginner should know.

  1. Data Types
    C# supports a wide range of data types, including integers, floating-point numbers, characters, booleans, and strings. To declare a variable in C#, you need to specify its data type and name. For example, to declare an integer variable named age with an initial value of 25, you would use the following code:
int age = 25;
  1. Operators
    C# provides several types of operators, including arithmetic, comparison, logical, and assignment operators. Operators are used to perform various operations on variables and values. For example, the following code demonstrates how to use the arithmetic operators to perform basic math operations:
int x = 10;
int y = 5;
int z = x + y; // Addition
int w = x - y; // Subtraction
int p = x * y; // Multiplication
int q = x / y; // Division
  1. Control Structures
    Control structures allow you to control the flow of your program based on certain conditions. C# supports various control structures, including if-else statements, switch statements, while loops, do-while loops, and for loops. For example, the following code demonstrates how to use the if-else statement to check if a number is even or odd:
int num = 10;
if (num % 2 == 0) {
    Console.WriteLine("Even number");
} else {
    Console.WriteLine("Odd number");
}
  1. Functions and Methods
    Functions and methods are used to perform a specific task in a program. In C#, you declare a function or method using the syntax:
access modifier return type function name(parameters) {
    statements
}

For example, the following code demonstrates how to declare and call a function in C#:

public int Add(int x, int y) {
    return x + y;
}

int result = Add(10, 5);
Console.WriteLine(result); // Output: 15
  1. Classes and Objects
    C# is an object-oriented language, which means that you can create classes and objects to represent real-world entities. A class is a blueprint for an object, and an object is an instance of a class. For example, the following code demonstrates how to define and create an object of a class in C#:
public class Person {
    public string Name { get; set; }
    public int Age { get; set; }
}

Person p = new Person();
p.Name = "John";
p.Age = 30;
  1. Exception Handling
    Exception handling is a mechanism in C# that allows you to handle runtime errors in your program gracefully. You can use try-catch blocks to catch and handle exceptions in your code. For example, the following code demonstrates how to catch and handle a divide by zero exception:
int x = 10;
int y = 0;
try {
    int result = x / y;
} catch (DivideByZeroException ex) {
    Console.WriteLine("Error: " + ex.Message);
}

In conclusion, these are just some of the basic concepts of C# programming language. As you become more familiar with the language, you will learn more advanced concepts and techniques that will enable you to create more sophisticated applications.

Articles

Was this article helpful to you? Yes No

How can we help?

Leave a Reply

Your email address will not be published. Required fields are marked *