Tag: Development

Community

A Larger Integer

(Jim Mischel) The .NET Framework has support for integers and unsigned integers up to 64 bits long. On a 64 bit processor, which has a native 64 bit type, operations on these long integers are very fast. Even on a 32 bit processor, the operations are normally pretty quick because the processor instr

Community

.NET Tip: Filling Lists with Enums

(Jay Miller) Many times, my code has an enumeration defined; it parallels the items that need to be displayed in a list. Keeping the list and enumeration in sync if items are added can be a challenge. To alleviate that problem, I’ll show you a function that you can use to populate a list from the en

Community

ASP.NET Performance Tips

(Adiseshu Dasari) I am going to present some of best approaches to improve the performance of ASP.NET applications. You should think about the separation of your application into logical tiers. You might have heard of the term 3-tier (or n-tier) physical architecture. These are usually prescribe