
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
Represent Int32 as a Hexadecimal String in C#
To represent Int32 as a Hexadecimal string in C#, use the ToString() method and set the base as the ToString() method’s second parameter i.e. 16 for Hexadecimal.
Int32 represents a 32-bit signed integer.
Firstly, set an Int32 variable.
int val = 9898;
Now, convert it to a hexadecimal string by including 16 as the second parameter.
Convert.ToString(val, 16)
Example
using System; class Demo { static void Main() { int val = 9898; Console.WriteLine("Integer: "+val); Console.Write("Hex String: "+Convert.ToString(val, 16)); } }
Output
Integer: 9898 Hex String: 26aa
Advertisements