1. Basics: Variables, Data Types, and
Input/Output
Code Example: Hello World, Variables, and
Input
using System;
classProgram
{
staticvoidMain(string[] args)
{
// Print a greeting
Console.WriteLine("Hello, C#!");
// Declare variablesstring name = "Alice";
int age = 25;
double height = 5.6;
// Input from the user
Console.Write("Enter your name: ");
string userName = Console.ReadLine();
Console.WriteLine($"Hello, {userName}! Welcome to C#!");
}
}
Key Concepts
Variables: int,
double, string, bool, etc.
Input:
Console.ReadLine() reads user input as a string.
Conditions use operators like ==,
!=, <, >, <=, >=.
int.Parse() converts input to an
integer.
3. Loops
Code
Example: For and While
using System;
classProgram
{
staticvoidMain(string[] args)
{
// For loopfor (int i = 1; i <= 5; i++)
{
Console.WriteLine($"Count: {i}");
}
// While loopint counter = 5;
while (counter > 0)
{
Console.WriteLine($"Countdown: {counter}");
counter--;
}
}
}
Key Concepts
for (initialization; condition; increment) is great for definite loops.
while (condition) is ideal for
indefinite loops.
4.
Functions
Code Example: Functions and Return
Values
using System;
classProgram
{
staticintFactorial(int n)
{
if (n == 0 || n == 1)
return1;
return n * Factorial(n - 1);
}
staticvoidMain(string[] args)
{
Console.WriteLine($"Factorial of 5 is {Factorial(5)}");
}
}
Key
Concepts
Functions are defined using
returnType functionName(parameters).
Recursive functions call themselves to solve
smaller subproblems.
5.
Lists and Dictionaries
Code Example:
Lists
using System;
using System.Collections.Generic;
classProgram
{
staticvoidMain(string[] args)
{
List<string> fruits = new List<string> { "Apple", "Banana", "Cherry" };
fruits.Add("Orange");
Console.WriteLine(fruits[1]); // Access by index
Console.WriteLine(fruits.Count); // Length of the list
}
}
Code
Example: Dictionaries
using System;
using System.Collections.Generic;
classProgram
{
staticvoidMain(string[] args)
{
Dictionary<string, int> ages = new Dictionary<string, int>
{
{ "Alice", 25 },
{ "Bob", 30 }
};
Console.WriteLine(ages["Alice"]);
ages["Bob"] = 31; // Update a value
Console.WriteLine(ages["Bob"]);
}
}
Key
Concepts
Lists: Dynamic collections
of items.
Dictionaries: Key-value
pairs for efficient lookups.
6. Classes and
OOP
Code Example: Object-Oriented
Programming
using System;
classDog
{
publicstring Name { get; set; }
publicint Age { get; set; }
publicDog(string name, int age)
{
Name = name;
Age = age;
}
publicstringBark()
{
return $"{Name} says Woof!";
}
}
classProgram
{
staticvoidMain(string[] args)
{
Dog myDog = new Dog("Buddy", 3);
Console.WriteLine(myDog.Bark());
}
}
Key
Concepts
Classes encapsulate data and behavior.
Properties like Name use
get and set.
Objects are instances of classes.
7. File
Handling
Code Example: Read/Write Files
using System;
using System.IO;
classProgram
{
staticvoidMain(string[] args)
{
// Write to a file
File.WriteAllText("example.txt", "Hello, file handling!");
// Read from a filestring content = File.ReadAllText("example.txt");
Console.WriteLine(content);
}
}
Key
Concepts
Use File.WriteAllText() and
File.ReadAllText() for simple file I/O.
Use StreamWriter or
StreamReader for more control.
8. Error
Handling
Code
Example: Try/Except
using System;
classProgram
{
staticvoidMain(string[] args)
{
try
{
Console.Write("Enter a number: ");
int number = int.Parse(Console.ReadLine());
Console.WriteLine($"Square: {number * number}");
}
catch (FormatException)
{
Console.WriteLine("That's not a valid number!");
}
}
}
Key
Concepts
Use try, catch,
and optionally finally to handle errors.
9. Using LINQ (Advanced Querying)
Code
Example: LINQ on Lists
using System;
using System.Collections.Generic;
using System.Linq;
classProgram
{
staticvoidMain(string[] args)
{
List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6 };
var evenNumbers = numbers.Where(n => n % 2 == 0).ToList();
Console.WriteLine(string.Join(", ", evenNumbers)); // Output: 2, 4, 6
}
}
Key
Concepts
LINQ (Language-Integrated Query) is used for
querying collections like lists.
10. Advanced
Topics
Delegates
using System;
classProgram
{
delegateintOperation(int x, int y);
staticintAdd(int x, int y) => x + y;
staticintMultiply(int x, int y) => x * y;
staticvoidMain(string[] args)
{
Operation op = Add;
Console.WriteLine(op(3, 4)); // Output: 7
op = Multiply;
Console.WriteLine(op(3, 4)); // Output: 12
}
}
Async/Await
using System;
using System.Threading.Tasks;
classProgram
{
staticasync Task Main(string[] args)
{
await Task.Delay(1000);
Console.WriteLine("Hello, async world!");
}
}
11.
Generics
Code Example: Generic Classes and
Methods
using System;
using System.Collections.Generic;
class GenericBox<T>
{
public T Value { get; set; }
public GenericBox(T value)
{
Value = value;
}
public void Display()
{
Console.WriteLine($"Value: {Value}");
}
}
class Program
{
static void Main(string[] args)
{
GenericBox<int> intBox = new GenericBox<int>(123);
GenericBox<string> stringBox = new GenericBox<string>("Hello");
intBox.Display(); // Output: Value: 123
stringBox.Display(); // Output: Value: Hello
}
}
Key
Concepts
Generics provide type safety while
maintaining flexibility.
Avoids redundant code by allowing
methods/classes to work with any data type.