Implementing interfaces with auto-implemented properties in C#
I know that you hate when you are implementing an interface with a bunch of properties, you use the Crtl + . and hit Implement interface and you get getter…
I know that you hate when you are implementing an interface with a bunch of properties, you use the Crtl + . and hit Implement interface and you get getter…
We will see how to create our own NuGet Server, make a package, publish it and install it in any project.
The nameof expression allows us to get an string with the name of a namespace, class, method, parameter, property, field or variable. This makes it very useful when we are…
In the version 6.0 of C #, the auto-implemented properties, those that we all known - that has a getter and a setter- can be initialized in their definition. We…
Csharp (C #) has predefined special identifiers that modify the element to which it precedes, such as a string, an identifier or the name of an attribute. In Csharp 6…