Asynchronous Programming in C#
In this post I want to summarize and collect some informations about Asynchronous Programming in C#. This topic is well…
Using a generic List with a custom data type in C#
In my previous post I described how to create an array with a custom data type we declared in a…
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…