C# > System > Convert > ToChar Converts the value of the specified 8-bit unsigned integer to its equivalent Unicode character. Example Convert a number to an ASCII Character var asciiCode = System.Convert.ToChar(65).ToString(); // 'A'
C# > System.Net > Dns > IPHostEntry > AddressList AddressList gets or sets a list of IP addresses that are associated with a host. Example Get all IP Addresses from devices attached to the machine
C# > Assert Class > IsInstanceOfType This method verifies that the specified object is an instance of the specified type. Example Test class implements a specific interface.