Advertisement
Fundamentalen

HexadecimalToDecimal

Mar 26th, 2014
1,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4. class HexadecimalToDecimal
  5. {
  6.     static void Main()
  7.     {
  8.         Console.Write("Enter you hexadecimal value: ");
  9.         string hexa = Console.ReadLine();
  10.  
  11.         long dec = long.Parse(hexa, NumberStyles.HexNumber);
  12.  
  13.         Console.WriteLine(dec);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement