tutorial
.NET: Add Comment to XML Document
Use the XmlSerializer and XmlDocument classes to add a comment to XML files
.NET: What's New or Changed in C# 6
A guide to the changes and additions in C# version 6
.NET: What's New or Changed in C# 7
A guide to the changes and additions in C# version 7
.NET: Using Brotli to Compress and Decompress Data
How to use the BrotliStream class to compress and decompress data in C#
.NET: Using GZip to Compress and Decompress Data
How to use the GZipStream class to compress and decompress data in C#
.NET: Convert Number to Binary String
How to convert a number such as an int, uint, long, ulong or other integer to a binary string using C#
.NET: Create Process
Examples of the CreateProcess class in C# and VB.NET
.NET: Retrieve the Executable's Path and Directory
How to find the .NET executable's path and directory
.NET: Find Keywords in Text using Regex
How to find a keyword in text using C# Regular Expressions
.NET: Globally Unique Identifiers
The GUID is great for anything requiring uniqueness
.NET: Hash-based Message Authentication Code
Safely store user passwords
.NET: Kill or End a Process
How to terminate a process using C#
.NET: Mersenne Twister Random Number Generation
A C# example of the popular Mersenne Twister random number generator
.NET: Operating System Detection
How to detect if the operating system is Linux, MacOS or Windows using C#
.NET: Power Status - AC/DC
How to detect the DC/battery operation or AC/plugged-in operation of the computer using C#
.NET: Strip HTML Tags from Text Using Regex
How to remove the tags from HTML text using C# Regular Expressions
.NET: Multi-threading with Tasks
How to multi-thread using the Task class in C#
.NET: Working with Threads
How to use the Thread class in C#
.NET: Working with Arrays
How to sort and work with parallel arrays inC#
.NET: Working with Dates
Working with the Date object and the TimeSpan object written in C#
.NET: Working with Strings
The StringBuilder class versus String.Format() plus common formatting parameters for dates and numbers written in C#
.NET: XmlSerializer Example
Serialize and deserialize objects to XML strings