.NET Core vs .NET Framework
.NET Core vs .NET Framework The information presented here is intended to be a high-level summary of .NET Core vs .NET Framework rather than a fully comprehensive or complete list.…
Developing is like telling jokes: if you have to explain it, it's not as good as it could be.
.NET Core vs .NET Framework The information presented here is intended to be a high-level summary of .NET Core vs .NET Framework rather than a fully comprehensive or complete list.…
Math.Max/Min vs inline comparisons This test stemmed from my having to write a lot of code, and look at a lot of code, that was doing comparisons between 2-3 numbers…
Does How You Access Class Properties Make A Difference? One day I found myself writing methods for Forex Trading bots where numerous methods within the bot had to access framework…
Does Parameter Order Make A Difference? I remember reading once that frequently accessed method variables placed first within a method’s signature are accessed faster as they are allocated for available…
C# Using Ints Vs Stringified-Ints This article details the benchmarks and performance showdown in C# using Ints Vs Stringified-Ints. Often enough C# programmers will find themselves using numbers in their…
C# ConvertTo Vs Parse This article details the benchmark and performance showdown: C# ConvertTo vs Parse methods. In any programming language, data type conversions are inevitably going to happen. C#…
C#: Dictionary Vs ConcurrentDictionary In this article we are going to benchmark a C# Dictionary Vs ConcurrentDictionary while adding/updating key-value pairs. This test came about while I was upgrading multiple…
C# TryParse Vs Try Catch This article details the C# benchmark showdown between TryParse Vs Try Catch performance. C# programmers are undoubtedly familiar with the multiple ways data can be…
C#: Fastest Way To Check Last Character of a String In this article we’ll benchmark in C#: Fastest Way To Check Last Character of a string. There are plenty of…
C#: Read lines from a text file in batches and process in parallel I have had numerous requests from readers if I could provide some sample C# code which will…