LINQ to SQL is a component of .Net Framework, and is specifically designed for working with SQL Server database. It […]
Updated on Kisan Patel
LINQ has the great ability to query on any source of data that could be collections of objects (in-memory data, […]
Updated on Kisan Patel
Anonymous types defined with var keyword. So A simple anonymous type variable begins with the var keyword, the assignment operator […]
Updated on Kisan Patel
Language-Integrated Query (LINQ) is the name for a set of technologies based on the integration of query capabilities directly into […]
Updated on Kisan Patel
The System.Text.StringBuilder class is very similar to the System.String class. but the difference is that StringBuilder class is mutable (mutable […]
Updated on Kisan Patel
Enumeration is a user defined value type. Enumerations contain a list of named constants that allows you to assign symbolic […]
Updated on Kisan Patel
In C#, Exception is a run-time error that arises because of some abnormal conditions, such as a division of a […]
Updated on Kisan Patel
In C#, you can have a single base class and multiple derived classes. If you do not want that any […]
Updated on Kisan Patel
Overriding is a feature that allows a derived class to provide a specific implementation of a method that is already […]
Updated on Kisan Patel
Sealed classes are classes that cannot be inherited. You can use the sealed keyword to define a class as sealed […]
Updated on Kisan Patel