منتدى فيجوال بيسك لكل العرب | منتدى المبرمجين العرب
التحويل من ال Hexadecimal to Decimal و بالعكس - نسخة قابلة للطباعة

+- منتدى فيجوال بيسك لكل العرب | منتدى المبرمجين العرب (http://vb4arb.com/vb)
+-- قسم : الأقسام التعليمية - المنتدى القديم (http://vb4arb.com/vb/forumdisplay.php?fid=90)
+--- قسم : مكتبة أكواد المنتدى (http://vb4arb.com/vb/forumdisplay.php?fid=111)
+---- قسم : مكتبة أكواد .net (http://vb4arb.com/vb/forumdisplay.php?fid=117)
+---- الموضوع : التحويل من ال Hexadecimal to Decimal و بالعكس (/showthread.php?tid=6226)



التحويل من ال Hexadecimal to Decimal و بالعكس - RaggiTech - 17-10-12

كاتب الموضوع : 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");