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#

Use Google Translate programmatically

Programming

It's quite easy to utilize Google Translate API to programmatically translate content from language A to language B as shown in this C# demo.

Read more...

C#

Tuple Patterns in C# 8.0

Programming

The new C# 8.0 Tuple Patterns are a very convenient way to allow matching of more than one value in a single pattern matching expression.

Read more...

C#

Switch Expressions in C# 8.0

Programming

The new C# 8.0 switch expressions are a very convenient way to map information in a compact fashion.

Read more...

C#