admincode

3 anos ago 139
1) async / await Use the async / await-pattern to allow unblocking of the UI / current thread ...
3 anos ago 343
A problem that can occur when creating unit tests is that you’ve got a private set:er for a ...
3 anos ago 120
Once you’ve started working with unit testing, chances are that you never want to work without it again. ...
3 anos ago 103
A few features of the enum concept in C#… Create enum public enum Names { Robert, //Will get ...
3 anos ago 290
Let’s say that you need to implement an interface that contains an (async) method returning Task<T>: public interface ...
3 anos ago 88
Exception filters was added in C# 6 and is a nice feature that lets you decide weather to ...
3 anos ago 153
Enum in C# is a powerful construct. And besides its standard use It can also be used as ...