You have an old app (maybe a WPF or even a VB6 app), it still works fine, but the plans to rewrite it to UWP and get all the features for Windows…
Tag: .NET
Fast file enumeration with UWP
Sometimes you need to enumerate the files in a folder and its subfolders and that can be a very long task, especially with large folders. This article will show a fast and…
Improving the UWP client app
After finishing my last post, I saw I could improve it a little bit. The UI was too raw (my goal at the time was not to show the UI, but show…
Analyzing Disk Space with C# Reviewed
After some time, I needed to analyze the disk space of my C: drive and used the program I have developed in my previous post and I got an “UnauthorizedAccessException”. After some…
Analyzing Disk Space with WPF
Some time ago, I’ve written an article about analyzing disk space using Excel and Powershell. While these tools are very easy to use and very flexible, that requires some organization: you must…
Implementing IEnumerable in the Data Structures
After finishing the series of articles about data structures (see here, here, here and here) I started to think about the GetItems method I had implemented in the Linked List and in…
Data structures in C# – Part 4 – Trees
Posts in this Series: Linked Lists Stacks Queues Trees (this post) To conclude the data structures shown in this series, we will show the tree. The tree will store organized data –…
Data structures in C# – Part 3 – Queues
Posts in this Series: Linked Lists Stacks Queues (this post) Trees In the last post, I’ve talked about stacks, a LIFO (Last In – First out) data structure. In this post, I…
Data structures in C# – Part 2 – Stacks
Posts in this Series: Linked Lists Stacks (this post) Queues Trees In the last post I’ve talked about one of the most basic data structures, the linked list. In this post we…
Data structures in C# – Part 1 – Linked lists
Posts in this Series: Linked Lists (this post) Stacks Queues Trees Although we use data structures daily in our programs, sometimes we forget the theory behind them. So, I decided to create…