How to remove unicode characters from a string in C# and VB.NET
There are various methods to remove unicode characters from a String in .NET. Below i will show you some methods and the benchmark results. Before choosing a method, take a…
All the Code Snippets and Samples you need
There are various methods to remove unicode characters from a String in .NET. Below i will show you some methods and the benchmark results. Before choosing a method, take a…
To check if internet is avaiable in C# and VB.NET you can use the following snippet. Sample C# Sample VB.NET
To check if a character is a vowel you can use the following extension method. Extension Method in C# Extension Method in VB.NET
To scale a Size variable in C# or VB.NET you can use the following Extension Method. Sample C# Sample VB.NET
Here are three Extension Methods which let you use the Left, Mid and Right Methods from VB6 in C# and VB.NET. The Extension Methods simply wrap the on-board .NET Framework…
To check if a string is Null or Empty or Whitespace in C# or VB.NET you can use the following Extension Method. Sample C# Sample VB.NET
To print the current Stack Trace without having a exception you can use the StackTrace class located in System.Diagnostics Namespace Sample C# Sample VB.NET for more informations take a look…
List of csharp Versions C# 1.0 released with .NET 1.0 and VS2002 C# 1.2 released with .NET 1.1 and VS2003 C# 2.0 released with .NET 2.0 and VS2005 C# 3.0…
To clear all Textboxes on a Form in C# or VB.NET you can use the Extensions method in the snippet below. Sample C# Sample VB.NET
To check if a folderpath contains Invalid characters you can use the following snippet. Sample C# Sample VB.NET for more informations see the MSDN Path.GetInvalidPathChars Method