Optimizing SQL Strategies
Optimizing SQL Strategies How many of you have come across SQL code that, for whatever reason, wasn’t written as good as it could have been? I’m not talking about going…
C# .Net: Fastest Way to count the number of times a character occurs in a string
The Fastest Way to count the number of times a character occurs in a string using C# .Net: This test stemmed from my other test on the fastest way to…
C# .Net: Fastest Way to Convert an Int to a String
C# .Net: fastest way to convert an int to a string Here I am going to benchmark several techniques to find the fastest way to convert an int to a…
C# .Net: What is the fastest conditional statement?
C# .Net: What is the fastest conditional statement? This will benchmark the C# if-else construct, switch statement, and C# ternary operator (?) to determine which is the fastest in C#…
C# .Net: Fastest Way to check if a Number is Odd Or Even
C# .Net: Fastest Way to check if a Number is Odd Or Even This will benchmark many techniques to determine in C# .Net: Fastest way to check if a number…
C# .Net: Use the Modulus Operator or Alternative?
C# .Net: Use the Modulus Operator or Alternative? This investigates the performance of the modulus operator % in C# .Net and benchmarks against other techniques to determine if you should…
The Fastest Way to Read and Process Text Files using C# .Net
Using C# .Net: Fastest Way to Read and Process Text Files This will benchmark many techniques to determine in C# .Net: Fastest Way to Read and Process Text Files. Building…
C# .Net: Fastest Way to Convert a String to an Int
C# .Net: Fastest Way to Convert a String to an Int This will examine and benchmark many techniques to determine in C# .Net: Fastest way to convert a string to…
C# .Net: Fastest Way to Read Text Files
C# .Net: Fastest Way to Read Text Files This will examine many techniques to determine in C# .Net: Fastest Way to Read Text Files or the fastest way to read…
C# .Net: Fastest Way to check if a string occurs within a string
Using C# .Net: Fastest Way to check if a string occurs within a string. This will examine many techniques to determine in C# .Net: Fastest Way to check if a…