Skip to main content

What is .NET?

1️⃣ What is .NET?

🔹 .NET (Dotnet) is a free, open-source, cross-platform framework developed by Microsoft for building various types of applications, including:

  • Web Applications
  • Desktop Applications
  • Cloud Services
  • Mobile Apps
  • Game Development
  • IoT Applications

🔹 Key Characteristics of .NET
Cross-platform – Runs on Windows, macOS, and Linux
Language Interoperability – Supports multiple languages, including C#, F#, and VB.NET
High Performance – Optimized runtime for fast execution
Managed Code – Uses the Common Language Runtime (CLR)
Automatic Memory Management – Uses Garbage Collection (GC)


2️⃣ Evolution of .NET

  • .NET Framework (2002) – The original, Windows-only version
  • .NET Core (2016) – A cross-platform, modular, open-source version
  • .NET 5+ (2020-Present) – A unified platform (merging .NET Framework and .NET Core)

🔹 Current Version: .NET 8 (Latest as of 2024)
🔹 Major Components of .NET

  • .NET Runtime – Executes C# applications
  • .NET SDK – Tools for building, running, and publishing applications
  • ASP.NET Core – Framework for web applications
  • Entity Framework Core (EF Core) – ORM for database interactions
  • ML.NET – Machine learning framework

3️⃣ Understanding the Common Language Runtime (CLR)

The CLR (Common Language Runtime) is the heart of .NET that:

  • Compiles C# code into Intermediate Language (IL)
  • Uses Just-In-Time (JIT) Compilation to convert IL into machine code
  • Provides Garbage Collection (GC) for automatic memory management
  • Handles Exception Management & Security

4️⃣ Understanding the .NET Libraries

🔹 Base Class Library (BCL) – A set of built-in classes for:

  • Data Types & Collections (string, List<T>, Dictionary<K,V>)
  • File & I/O Operations (File, StreamReader, StreamWriter)
  • Networking (HttpClient, Socket)
  • Threading & Parallel Execution (Task, Thread, Parallel)

🔹 NuGet Packages – Additional libraries you can install from NuGet Package Manager
Example:

dotnet add package Newtonsoft.Json

5️⃣ Introduction to C#

🔹 C# (C-Sharp) is a modern, object-oriented programming language developed by Microsoft for building applications on the .NET platform.

🔹 Why Learn C#?
Easy to Learn – Clean syntax, similar to Java and C++
Strongly Typed – Helps catch errors at compile-time
Object-Oriented – Supports encapsulation, inheritance, and polymorphism
Versatile – Used in web, desktop, mobile, and game development
Backed by Microsoft – Continuous improvements and community support


6️⃣ C# Compilation Process

🔹 C# Code Execution Flow:
1️⃣ C# Code (.cs file) ➝ Compiled into Intermediate Language (IL)
2️⃣ IL Code ➝ Executed by the .NET CLR using Just-In-Time (JIT) Compiler
3️⃣ Machine Code ➝ Runs on the CPU

Example:

using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Hello, .NET and C#!");
    }
}

🔹 Compile and Run:

dotnet run

7️⃣ C# Language Features

Variables & Data Types (int, double, string, bool, object)
Control Flow (if, switch, for, while)
Functions & Methods (Method Overloading, Recursion)
OOP Principles (Encapsulation, Inheritance, Polymorphism, Abstraction)
Asynchronous Programming (async/await, Task<T>)
Exception Handling (try, catch, finally)
LINQ (Language Integrated Query) (from x in list where x > 10 select x)


8️⃣ Frameworks & Technologies Built with C#

🔹 Web Development – ASP.NET Core
🔹 Desktop Applications – WPF, WinForms, MAUI
🔹 Mobile Development – .NET MAUI, Xamarin
🔹 Game Development – Unity (Uses C# as scripting language)
🔹 Cloud Computing – Azure Functions, Serverless Apps
🔹 Machine Learning – ML.NET
🔹 Database Development – Entity Framework Core, Dapper


9️⃣ C# Development Tools

🔹 Integrated Development Environments (IDEs):

  • Visual Studio (Recommended)
  • Visual Studio Code
  • JetBrains Rider

🔹 Package Managers:

  • NuGet (for libraries)
  • .NET CLI (dotnet add package <package-name>)

🔹 Debugging Tools:

  • Visual Studio Debugger
  • dotnet trace, dotnet dump

🔚 Conclusion

Understanding .NET and C# is the foundation for becoming a skilled C# developer. Once you're comfortable with these concepts, you can move on to deeper topics like object-oriented programming, async programming, databases, and web development with ASP.NET Core.

Comments

Popular posts from this blog

Car Wash System vb.net

This software consists of a database that save the registration number of every vehicle being wash along side with the date, type of wash made and price Screen Shot Source Code To view records in the database: Dim conn As OleDbConnection = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\washRcd.accdb;Persist Security Info=False") Dim sql As String sql = " SELECT * FROM tblwash" conn.Open() Dim dt As New DataTable Dim cmd2 As New OleDb.OleDbDataAdapter(sql, conn) cmd2.Fill(dt) DataGridView1.DataSource = dt DataGridView1.Refresh() conn.Close() To insert new record in the database: Private Sub insert() Dim conn As OleDbConnection = New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\washRcd.accdb;Persist Security Info=False") Dim updateSql As String = String.Format(...

Face recognition using EmguCV 3.0 and typing pattern recognition

Introduction An MSc project with the title Student Examination System, where the objective is to put the students in an examination condition but instead of having an invigilator in an examination center, the system will cater for the proper ongoing of the exam. the system can be used as an online examination system The system is able to: Recognizing the face shape of a particular student Detect if there is more than one person in the examination room  Analyze the typing pattern of a student and detect if any one person is taking part in the exam voice recognition for the student and detect if there is more than one person speaking in the examination room Setup Download Emgu CV from  http://www.emgu.com/wiki/index.php/Main_Page Download Haarcascade from  https://github.com/opencv/opencv/tree/master/data/haarcascades Create an account at  https://www.keytrac.net/ Face recognition The snippet below illustrates how the Emgu CV is loaded whe...

Student Information System - AngularJS , ASP.NET API, C#

Web based application the student information system is a small application that allows user to register and login to view information about a particular student and can perform several actions like Login and register to the application View students  Add new student Delete a particular student Update user information Screen Shot Project architecture routing.js, config.js and app.js allow the application to route from one partial view to another and config.js is used to save all the endpoint needed to access the API.   For separation of concerns, in the solution panel separate partial views, controller and services in different directories and reference it in index.html to enable angular to load all the files required Login process login.html LoginController.js Using $resource from AngularJS to make an API call and response  with a user details model UserViewModel and UserDetailsViewModel Using Unity fo...