×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

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
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.