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 [...]
Archive for March, 2008
Constants vs Readonly in C#
Posted in C# on March 18, 2008 | Leave a Comment »
Connection Pooling in ASP.NET 2.0
Posted in ASP.NET on March 18, 2008 | Leave a Comment »
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 [...]