List/Grid

Tag Archives: C#

Interfaces in C#

A very basic article on interfaces. Demostrates how to drive class with multiple interfaces (multiple interface inheritance) with same method and properties and use the methods. using System; using System.Collections.Generic;… Read more »

Structures in C#

using System; using System.Collections.Generic; using System.Text; namespace CSharpBasics { //Cannot be declare sealed/abstract /* * A structure or struct can contain only fields, methods, Etc., * In struct we can’t… Read more »

Using HttpModule to Handle Ajax Calls

Download Example Introduction This is an article about how we can use httpmodule to handle an Ajax request. I have added a new function to directly load the HTML container… Read more »

CLR integration in SQL Server

Sometimes writing some code in C# is very easy as compared to SQL. Examples are recursion, handling datetime functionality like day light saving and many more. So for that we… Read more »

Validate an InFix expression using C#

I have written a small code to validate infix expression with basic arithmetic operations (+ ,- ,* ,/ ). As i was stuck validating the infix expression, so i thought… Read more »