Type Comparisons Once you have a variable, you inevitably want to compare it with another variable using a comparison operator (==, !=, and so forth). […]
Category: CSharp Articles
C# Struct and Enumeration
C# Struct and Enumeration Struct Structs are similar to classes except they are value types designed to implement lean and mean data types. Also, structs […]
Exception Handling in .NET
Introduction Exception handling is made easier and streamlined in .Net. It uses the Exception objects to cascade the exception between layers and allows handling them […]
LINQ to ADO.NET
LINQ to ADO.NET A .NET application can write LINQ queries to SQL, Entities and Dataset. LINQ to SQL and LINQ to Entities have direct connection […]
Arrays in C#
Arrays in C# Array is collection of variable of same datatype . Syntax to declare arrays : DataType[] arrayname ; Arrays are following types : […]
LINQ Simplified
Anonymous Method , Lambda Expressions and LINQ in C# 3.0 LINQ stands for Language Integrated Query. List contains flower name below : List flowerList = […]
C# & OOPs
C# & OOPs What is a Class? A class is a blueprint or prototype that defines the variables and the methods (functions) common to all […]
