How to convert int to hex and hex to int in C# or VB.NET
How to convert int to hex and hex to int in C# or VB.NET? Example C# Example VB.NET see also Standard Numeric Format Strings in the MSDN.
All the Code Snippets and Samples you need
How to convert int to hex and hex to int in C# or VB.NET? Example C# Example VB.NET see also Standard Numeric Format Strings in the MSDN.
How to populate a XDocument from a String? Example C# Example VB.NET see the msdn for more informations XDocument.Parse Method
How to convert a char array to string in c# or vb.net? Sample C# Sample VB.NET For more informations take a look at the String Class Constructor’s in the msdn.
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…
normally you can set a default value for your properties by giving the private property a value. but the auto implemented properties which were introduced with C# 3.0 the syntax…
To use multiple order by statements in your LINQ query you can use the OrderBy Method combined with multiple ThenBy Method’s. Example so let’s create a sample class and fill…
If you need to force a .NET Application to run with Administrative Privileges, you simply need to modify the Application Manifest File of your Project. If you need Help Adding…
This code snippet can help you to calculate a Person’s age using C# and VB.NET. C# Snippet #region using System; #endregion namespace de.Fesslersoft.CalculateAge { internal class Program { public static…