Computer >> Máy Tính >  >> Lập trình >> C#

Phương thức Uri.FromHex () trong C #

Phương thức Uri.FromHex () trong C # được sử dụng để lấy giá trị thập phân của một chữ số thập lục phân.

Cú pháp

Sau đây là cú pháp -

public static int FromHex (char digit);

Ở trên, chữ số tham số là chữ số thập lục phân (0-9, a-f, A-F) để chuyển đổi.

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ để triển khai phương thức Uri.FromHex () -

using System;
public class Demo {
   public static void Main(){
      char ch = 'D';
      Console.WriteLine("Character value = "+ch);
      int res = Uri.FromHex(ch);
      Console.WriteLine("Converted int value = "+res);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Character value = D Result = 13

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ khác để triển khai phương thức Uri.FromHex () -

using System;
public class Demo {
   public static void Main(){
      char ch = '6';
      Console.WriteLine("Character value = "+ch);
      int res = Uri.FromHex(ch);
      Console.WriteLine("Result = "+res);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Character value = 6
Result = 6