Different Selection of .net Data Structure Has a Positive Impact on Performance 

.net Data Structure

Today, programmers often fail to consider the performance impact of certain programming choices. Computers have, and continue to, advance and their seemingly unlimited memory results in a programmer’s lack of programming considerations. In one of my recent projects, I had to search reference data from multiple large lists of data (between 500 – 4000 entries in each list) from a numeric ID field in another large list of objects. In this blog, I will explore the positive impacts a different selection of .net data structure can have on performance.    Adopting the standard naive approach of storing the reference data in a List and then using a LINQ query to … Read more