C# tip: String.IsNullOrEmpty or String.IsNullOrWhiteSpace? 2021-07-06 2 min read CSharp Tips Is your string really empty, or has it hidden characters? With String.IsNullOrEmpty and String.IsNullOrWhiteSpace you can find it Continue reading
C# tip: how to get the index of an item in a foreach loop 2021-06-08 4 min read CSharp Tips Do you need the index of the current item in a foreach loop with C#? Here you’ll see two approaches. Continue reading