How to resize a image using C# or VB.NET
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
All the Code Snippets and Samples you need
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)
To get the Calling Assembly in C# or VB.NET you can use Reflection. Sample C# Sample VB.NET for more informations see the MSDN: Reflection (C# and Visual Basic), Assembly.GetCallingAssembly Method
To change the time in a DateTime you can either use Timespan or the add methods of the DateTime class. I will show you both ways and give you also…
There is more than one way to get the current username using C# or VB.NET i will show you one using Environment Variable and one using the WindowsIdentity. If you are in a Network…
The following character escape sequences are avaiable in c# \’ single quote, needed for character literals \” double quote, needed for string literals \\ backslash \0…
To rename a file in c# or vb.net you need to Move it, there is no inbuild function that would just rename a file without moving. The Move function can…
To replace multiple spaces with a single space in c# or vb.net you can use a Regular Expression Sample c# Sample VB.NET there are more ways to do that, but…
How can a class marked as Deprecated/Obsolete in c# or vb.NET? You can mark a class, method or property by adding the Obsolete Attribute above the declaration. Sample C#…