Josh Fischer - .NET and C# Consultant

.NET, C#, Azure, WinUI, Wpf, Uno, Sql, Visual Studio, Webassembly

When async/await Is Not Asyncronous

- Posted in .NET by

Numerous times in my career I have come across code that appears to be asynchronous, or multi-threaded, but the tasks are actually executed one at a time. This usually happens when existing code is retrofitted to use async/await or when there are layered function calls and complicated logic. The

Enum Values Can Be Duplicated and Negative

- Posted in .NET by

Well, you learn something every day. I just discovered that .NET enumerations can have duplicate values. I personally think this is little dangerous as the primary use of enumerations is to provide discrete numerical values for text based names, but I can image there are edge cases in which it