Feeds:
Posts
Comments

Archive for March, 2008

Constants vs Readonly in C#

Constants
A constant is one which has a never changing value. When defining a constant  its  value must be determinable at the compile time. The compiler then saves this information in the metadata of the assembly. Defining a constant causes creation of metadata.You can define the constants for only the CLR primitive types like string,int ,bool,Double [...]

Read Full Post »

Whenever you are trying to use the Connection Pooling mechanism which is in built in ASP.NET you are trying to improve the scalability and the performance of the application. This feature is not that much useful if your application is not  a  multithreaded. If ASP.NET is involved every second that the connection is idle eats [...]

Read Full Post »