How to check if a folderpath contains Invalid characters
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
All the Code Snippets and Samples you need
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
To check if a filepath contains Invalid characters you can use the following snippet. Sample C# Sample VB.NET for more informations see the MSDN Path.GetInvalidFileNameChars Method
To copy a text or a image to the windows clipboard you can use the following snippet. Sample C# Sample VB.NET for more informations see the MSDN Clipboard.SetDataObject Method
To format bytes to human readable file size you can use the following code snippet. Sample C# Sample VB.NET
To convert a String to byte Array and back you can use the following snippet. Sample C# Sample VB.NET
To get temporary folder path you can use System.IO.Path.GetTempPath(). It will check the environment variables in the following order. TMP environment variable. TEMP environment variable. USERPROFILE environment variable. Windows directory…
You can use the DebuggerDisplay Attribut like in the sample shown below. Sample C# Sample VB.NET Result it will be shown like this when debugging. for more informations see the…
To resize a image using C# or VB.NET you can use the following snippet. Sample C# Sample VB.NET Here are the same methods as Extensions Methods Sample C# Sample VB.NET
To make a string titlecase in C# or VB.NET you can use the following snippet. Sample C# Sample VB.NET
To reverse a string in C# or VB.NET you can use the following snippet. Sample C# Sample VB.NET for more informations take a look at the MSDN: Array.Reverse Method (Array)