C# Access Modifiers

  • Post published:June 13, 2020

Access modifiers are keywords in object-orientated programming (OOP) that are used to set the accessibility levels of types and type members. In C#, the accessibility level controls whether a type…

Dependency Injection with .NET Azure Functions

  • Post published:May 23, 2020

.NET Azure functions supports the dependency injection design pattern by providing an extension package. Support for dependency injection begins with Azure Functions 2.x. Getting started Create an empty .NET Azure…