Thursday, January 26, 2012

ASP.NET Session State


What is session state?
·         The heavy weight of state management, it allows information to store in one page to another.
·         It supports any type of object, which includes custom data types.
·         It also uses the same collection syntax as view state.
·         It is also considered similar to application state. However, session stated scopes only current browser(user session) and only available to that session unlike application state which scopes the entire application.

Saturday, April 16, 2011

Using IEnumerator and IEnumerable in the .NET Framework

In this post I actually created a simple program using C# that implements IEnumerator and IEnumerable.
So if you are interested let's get started....

Wednesday, March 30, 2011

ICloneable

Are you interested on how  to use IClonable Interface? I hope this will give you an idea!

Sunday, March 20, 2011

Difference between IComparable and IComparer

Do you wan to know the difference between IComparable and IComparer! just check my sample below! thanks.