
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Hex String to Hex Number in C#
Firstly, set the Hex String −
string str = "7D";
Now, use the Convert.ToSByte() method to convert the Hex string to Hex number −
Console.WriteLine(Convert.ToSByte(str, 16));
Let us see the complete code −
Example
using System; namespace Demo { public class Program { public static void Main(string[] args) { string str = "7D"; Console.WriteLine(Convert.ToSByte(str, 16)); } } }
Output
125
Another way of converting Hex String to Hex Number −
Example
using System; namespace Demo { public class Program { public static void Main(string[] args) { string str = "7D"; Console.WriteLine(Convert.ToInt32(str, 16)); } } }
Output
125
Advertisements