Greater Than vs Less Than vs Equals in C#
Greater Than vs Less Than vs Equals in C# As a programmer, have you ever had a situation where there’s a variable that could be 1 of 2 or maybe…
Length Vs Count Vs Initialized Variable in C#
Length Vs Count Vs Initialized Variable in C# This test originated from having to loop over millions of records in an array in an application that requires everything be as…
SQL: comparing values IN vs INNER JOIN
IN Vs INNER JOIN Here we will do a quick benchmark on using IN vs INNER JOIN. This came about when a coworker had to run a one-off SQL statement…
Override the Nintex Form Save and Submit Button Behavior
How to Override the Nintex Form Save and Submit Button Behavior Sometimes when submitting a Nintex form for SharePoint OnPrem, you need to override the Nintex Form Save and Submit…
C#: Ints Vs Stringified-Ints
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
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#…
JavaScript-TypeScript for Nintex Forms to Validate File Names
JavaScript-TypeScript for Nintex Forms to Validate File Names This article is going to discuss how to implement JavaScript-TypeScript for Nintex Forms to Validate File Names before they’re uploaded to SharePoint.…
C# logging data technique
C# Logging Data Technique The last few weeks I have been having to conduct some C# code reviews. While doing so, I came across a great, flexible C# logging data…
C#: Dictionary Vs ConcurrentDictionary
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
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…