Home »
C#
C# | Uri.IsHexDigit() Method with Example
Uri.IsHexDigit() Method: Here, we are going to learn about the IsHexDigit() method of Uri class with example in C#.
Submitted by Nidhi, on March 28, 2020
Uri.IsHexDigit() Method
Uri.IsHexDigit() method is a static method to check given character is a hex digit or not. It returns true if a given character is hex digit, otherwise, it returns false.
Syntax:
bool Uri.IsHexDigit (char ch);
Parameter(s):
- char ch – represents the character to be checked for hex digit.
Return value:
The return type of this method is string, it returns a Boolean value.
Example to demonstrate example of Uri.IsHexDigit() method
using System;
class UriExample
{
//Entry point of Program
static public void Main()
{
char ch1 = 'e';
char ch2 = 'g';
if (Uri.IsHexDigit(ch1))
Console.WriteLine("It is hex digit");
else
Console.WriteLine("It is not hex digit");
if (Uri.IsHexDigit(ch2))
Console.WriteLine("It is hex digit");
else
Console.WriteLine("It is not hex digit");
}
}
Output
It is hex digit
It is not hex digit