منتدى فيجوال بيسك لكل العرب | منتدى المبرمجين العرب

نسخة كاملة : التحويل من ال Hexadecimal to Decimal و بالعكس
أنت حالياً تتصفح نسخة خفيفة من المنتدى . مشاهدة نسخة كاملة مع جميع الأشكال الجمالية .
كاتب الموضوع : Boutemine Oualid

السلام عليكم و رحمة الله و بركاته


كود :
// Hexadecimal to Decimal
public static int HexToDec(string hexValue)
{
return Int32.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);
}
// Decimal to Hexadecimal
public static string DecToHex(int decValue)
{
return string.Format("{0:x}", decValue);
}

string hex = DecToHex(15);
int dec = HexToDec("f");