home / developersection / tag
The Microsoft .net framework is a complete software package that can be installed on the computer running on the Microsoft windows operating system. The component that make the .net platform are collectively called .net framewor
“Polymorphism means one name multiple forms”. Using this feature we can make more than one method using the same name. Polymorphism can be achieved in two ways method overloading and method overriding.
Namespaces are program elements designed to help us organize our programs. They also provide assistance in avoiding name clashes between two sets of code.
A namespace is a method of organizing a group of assemblies, classes, or types. A namespace acts as a container, like a folder, for classes organized into groups usually based on functionality.
The .Net languages use its corresponding runtime to run the application on different Operating Systems. During the code execution time, the Managed Code compiled only when it is needed, that is it converts the appropriate instructions to the native c
I’m going to demonstrate how to get connection string from App.config in C#.Net.ExampleApp.configxmlversion1.0encodingutf-8 configuration conne
Access Modifiers describes the scope of an object.C# has five Access Modifiers. Public Private Protected Internal Protected internal P
The Common Language Runtime (CLR) is an Execution Environment. It works as a layer between Operating Systems and the applications written in .Net language.
CIL (Common Intermediate Language) is a bytecode and the language of the .NET platform into which compiled source code of high level language is written. Its operations are based on a stack and it is executed by a virtual machine.