×

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.FromHex() Method with Example

Uri.FromHex() Method: Here, we are going to learn about the FromHex() method of Uri class with example in C#.
Submitted by Nidhi, on March 28, 2020

Uri.FromHex() Method

Uri.FromHex() method is a static method that returns an integer that represents a decimal digit of specified hex char.

Syntax:

    int Uri.FromHex (char ch);

Parameter(s):

  • char ch – represents the specified hex char.

Return value:

The return type of this method is int, it returns an integer that represents a decimal digit of specified hex char.

Example to demonstrate example of Uri.FromHex() method

using System;

class UriExample
{
    //Entry point of Program
    static public void Main()
    {
        char ch1 = 'e';
        char ch2 = 'g';

        int decimalDigit = 0;
        if (Uri.IsHexDigit(ch1))
        {
            decimalDigit = Uri.FromHex(ch1);
            Console.WriteLine("Hex Digit: {0}, decimal digit: {1}",ch1,decimalDigit);
        }
        else
            Console.WriteLine("It is not hex digit");

        if (Uri.IsHexDigit(ch2))
        {
            decimalDigit = Uri.FromHex(ch2);
            Console.WriteLine("Hex Digit : {0}, decimal digit: {1}", ch2, decimalDigit);
        }
        else
            Console.WriteLine("It is not hex digit");
    }
}

Output

Hex Digit: e, decimal digit: 14
It is not hex digit
Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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