C#

Home » C#
1 ano ago 138
C# is a Microsoft language that is used to create software with a graphical user interface. It is ...
3 anos ago 184
So, you have heard of Dependency injection (DI) and Inversion of Control (IoC) but are having a hard ...
3 anos ago 213
Lambda expressions, delegates, predicates and closures – complicated sounding terms that in fact are easy to grasp once ...
3 anos ago 155
1) async / await Use the async / await-pattern to allow unblocking of the UI / current thread ...
3 anos ago 376
A problem that can occur when creating unit tests is that you’ve got a private set:er for a ...
3 anos ago 131
Once you’ve started working with unit testing, chances are that you never want to work without it again. ...
3 anos ago 109
A few features of the enum concept in C#… Create enum public enum Names { Robert, //Will get ...
3 anos ago 326
Let’s say that you need to implement an interface that contains an (async) method returning Task<T>: public interface ...
3 anos ago 91
Exception filters was added in C# 6 and is a nice feature that lets you decide weather to ...
3 anos ago 169
Enum in C# is a powerful construct. And besides its standard use It can also be used as ...