Developer Support

Advocacy and Innovation

Choosing the right tooling for Azure and side by side Azure CLI and PowerShell commands

This article on the various tools available to perform tasks in Azure comes to us from Premier Developer consultant Crystal Tenn.There are a lot of tools out there for managing your Azure subscriptions! We have the Portal web page, Visual Studio integration (with the Azure SDK), PowerShell commands, and the Azure CLI. Sometimes it’s hard to ...

Dissecting the tuples in C# 7

types were introduced in .NET 4.0 with two significant drawbacks: (1) tuple types are classes and (2) there was no language support for constructing/deconstructing them. To solve these issues, C# 7 introduces new language feature as well as a new family of types (*). Today, if you need to glue together two values to return them from a ...