C# is a general-purpose, modern and object-oriented programming language pronounced as “C Sharp”. It was developed by Microsoft led by Anders Hejlsberg and his team… Read More
Tag Archives: CSharp-Basics
Looping in a programming language is a way to execute a statement or a set of statements multiple number of times depending on the result… Read More
The Type System Unification in C# means all the data types in C# are inherited from the Object class, whether directly or indirectly. Or you… Read More
Garbage collection is a memory management technique used in the .NET Framework and many other programming languages. In C#, the garbage collector is responsible for… Read More
Boxing and unboxing is an important concept in C#. C# Type System contains three data types: Value Types (int, char, etc), Reference Types (object) and… Read More
C# is a programming language that was first released in 2000 by Microsoft as part of the .NET framework. Since its initial release, C# has… Read More
C# is a general-purpose, modern and object-oriented programming language pronounced as “C Sharp” or “C Hash”. It was developed by Microsoft led by Anders Hejlsberg… Read More
The .NET Framework is a software development framework developed by Microsoft that provides a runtime environment and a set of libraries and tools for building… Read More
The part of the program where a particular variable is accessible is termed as the Scope of that variable. A variable can be defined in… Read More
Implicitly typed variables are those variables which are declared without specifying the .NET type explicitly. In implicitly typed variable, the type of the variable is… Read More
Visual Studio is an Integrated Development Environment(IDE) developed by Microsoft to develop GUI(Graphical User Interface), console, Web applications, web apps, mobile apps, cloud, and web… Read More
The Common Language Runtime (CLR) is a component of the Microsoft .NET Framework that manages the execution of .NET applications. It is responsible for loading… Read More
C# applications have an entry point called Main Method. It is the first method which gets invoked whenever an application started and it is present… Read More
Windows Forms is a Graphical User Interface(GUI) class library which is bundled in .Net Framework. Its main purpose is to provide an easier interface to… Read More