Categories
.NET English

The time I spent with MS Flow (Power Automate)

One day, I needed to use MS Flow (now Power Automate) and to get more familiar with Microsoft’s unique RPA solution. I discovered it by chance while I was playing with Power Apps that were new to me. Then, I used it extensively in a way that maybe even Microsoft didn’t think of it as […]

Categories
.NET English OOP

Abstract modifier uses and examples

Abstract modifier is added to something that is not usable or incomplete. In classes it means that the abstract class could be used only for inheritance or sub-classing (in java). Real life examples of things that’re similar to abstract class An abstract class for cars: this class may contain general features of a car, like […]

Categories
.NET English Parallelism

Thread class in .NET

System.Thread is the simplest and in the same time the most widely used class for Task Parallelism in DOT NET. In this article we will explain several important methods, attributes and ways to use System.Thread efficiently. We will take several cases and properties of Thread.Sleep and explore it’s effect and how can we make use […]