Sean Lloyd
How to find the Powershell version in Windows
There are a few ways to find out which version of PowerShell is installed on a system...
How to Replace Part of a String Using Powershell
There are two very simple ways to replace text within a string in Powershell. You can replace part of a string using the replace function, or by using the replace operator...
How to Use SelectMany in LINQ - C#
A quick guide on how to use the SelectMany LINQ operator...
How to Use Select in LINQ - C#
A quick guide on how to use the Select LINQ operator, using both method and query syntax...
How to Kill a Thread - C#
If you wish to terminate a thread in C#, you can use the Abort() method. Using Abort() with throw a ThreadAbortException, which will terminate the thread. To show this in action, let's first create a thread...
How to Use OfType in LINQ - C#
A quick guide on how to use the OfType LINQ operator...
How to Use Where in LINQ - C#
A quick guide on how to use the Where LINQ operator, using both method and query syntax...
How to Hash a String - C#
The process of hashing in cryptography is to map any string of any given length, to a string with a fixed length. This smaller, fixed length string is known as a hash. To create a hash, it must be passed into a hash function...