home / developersection / category
The enum keyword is used to declare an enumeration, a distinct type consisting of a set of named constants called the enumerator list. It is user defi
The static keyword in C# is refering to something in the class, or the class itself, that is shared amongst all instances of the class.Static:A C#clas
A Lambda expression is nothing but an Anonymous Function, can contain expressions and statements. Lambdaexpressions can be used mostly to create deleg
Astructtype is a value type thatis typically used to encapsulate small groups of related variables, suchas details of student. Example:Create struct
An interfacelooks like a class, but has no implementation. The only thing it contains isdefinitions of events, indexers, methods and/or properties.The
The routing engine can decouple the URL in an incoming HTTP request from the physical Web Form that responds to the request, allowing you to build fri
In the earlier versions of Visual Studio .Net 2005, while you create an ASP.Net application, you might have seen that a single class has to be in a si
The basic difference between Close() and Dispose() is, when a Close() method is called, connection will be temporarily closed and can be opened once a
A process is an executing instance of an application.A thread is a path of execution within a process. Process can contain multiple threads. Thre
Every Variable in C++ can store a value. However, the type of value which the variable can store has to be specified by the programmer. C++ supports t
Here I’m going to demonstrate how to delete all Temporary Internet Files of Internet Explorer through C#.Net.Example private void btnDelete_Click(obje
Html Encode method encodes a particular string to be displayed in a browser. It is important to encode strings prior it’s rendering in the page, main