This tutorial will show you how to convert an enum to a generic list in C#? For example, we have […]
Updated on Kisan Patel
Here you will learn how to create and load thumbnail from original image using Generic handler in ASP.Net. In this […]
Updated on Kisan Patel
Here we will show you a simple and easy way to get public or external IP address in C#. Here […]
Updated on Kisan Patel
The IsNullOrEmpty method is a very convenient method in that you can check if string is null or zero length. […]
Updated on Kisan Patel
If you have a string with a specific set of characters like delimiters, spaces, or some other characters at the […]
Updated on Kisan Patel
If you have a string and you want to convert this string to its equivalent value type then you need […]
Updated on Kisan Patel
If you have a hostname such as google.com, and you need to obtain the IP address then use the Dns.GetHostEntry […]
Updated on Kisan Patel
If you have an IP address and you need to resolve its hostname then use the Dns.GetHostEntry method in C#. […]
Updated on Kisan Patel
To check a remote server availability on the network using C#, you need to use the System.Net.NetworkInformation.Ping class. class Program […]
Updated on Kisan Patel
To upload files using the File Transfer Protocol (FTP), you need to use the System.Net.FtpWebRequest class. string uploadFilePath = @”C:\example.html”; […]
Updated on Kisan Patel