C# Events and Delegates
In this post I want to take a closer look about what C# events and delegates are and what’s the…
Using Google’s OAuth 2.0 API for an ASP.NET Core Web App
In this post I want to show how you can enable users to sign-in into a web app by using…
Set up Active Directory Federation Services (AD FS 5.0) – Create an ASP.NET Web Application (.NET Framework – Web Forms) using WS-FED – Part 4
In this post I want to show you, how you can create a claim aware ASP.NET web application (.NET Framework…
Accessing Azure Storage Account Blobs from C# Applications
In a previous post we went through accessing Azure File Shares with C#, today we will do the same with…
Using an array with a custom data type in C#
Generally an array cannot store data from different types like int and string as in contrast to lists. Therefore in…
Using List Tuples in C#
In most cases for storing data using a generic List<T> over an array is more suitable and lists offers more…
Accessing Azure Storage Account File Shares from C# Applications
Azure Storage File Shares client library for .NET – Version 12.4.0https://docs.microsoft.com/en-us/dotnet/api/overview/azure/storage.files.shares-readme Azure File Shares offers fully managed file shares in…
Create a C# Console App (.NET Framework) to export Mail Attachments from an Exchange Mailbox
First we need to install two Exchange Assemblies with the NuGet Package Manager, in order to have an API to…