Find Integer Prime Numbers with Parallelism

Programming

How to check if an Integer Number is a Prime Number in C# using a Parallel Loop

Read more...

C#

QueryStrings in ASP.NET Core

Programming

In ASP.NET Core we have the QueryHelpers class for automatically creating QueryStrings. No more dealing with encoding/decoding strings, ampersand and question marks manually!

Read more...

Calculate Folder/Directory Size

Programming

Get the Size of a Folder/Directory including all SubFolders with LINQ.

Read more...

Find Top 5 memory consuming Processes

Programming

Using LINQ to find the Top 5 memory consuming Processes on your system.

Read more...

Looping Over a Large Collection of Data

Programming

Finding a value in a large collection of data - to loop or not to loop?

Read more...

Iterate over Multiple Arrays in a single Loop

Programming

Iterate over Multiple Collections in a single Loop with LINQ in C#

Read more...

Fonts in WPF and WinForms

Programming

HowTo: Performe various actions regarding Fonts in WPF and Winforms like check if a specific Font exists or adding custom Fonts to your WPF application.

Read more...

C#

For Loop vs ForEach Loop

Programming

For Loop vs ForEach Loop - which of them performes faster?

Read more...

C#

Execute SQL scripts with GO statements

Programming

How to execute SQL script with GO statements in C# with SQL Server Management Objects (SMO)

Read more...

Validate URL

Programming

Check if a given string contains a valid URL without the usage of messy RegEx expressions .

Read more...

C#