How to reverse a string in C# or 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)
All the Code Snippets and Samples you need
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 flip a coin in C# or VB.NET you just need to use this extension method on a instance of random. Extension Method C# Extension Method VB.NET
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…
Replacing a line break is a simple challenge. In .NET there are plenty of ways to do that. You can for example use String.Replace or Regex.Replace. My prefered method is…
To generate random numbers in csharp or vb.net you simply need to use the Random class which is located in the namespace System. c# example vb.net example remember that the…