mohsen-unique
پنج شنبه 21 آبان 1388, 16:20 عصر
چطوری می شه مقدار هگز یک عبارت یا یک عدد رو بدست آورد؟
kiosksoft
پنج شنبه 21 آبان 1388, 19:44 عصر
// Store integer 182
int decValue = 182;
// Convert integer 182 as a hex in a string variable
string hexValue = decValue.ToString("X");
// Convert the hex string back to the number
int decAgain = int.Parse(hexValue, System.Globalization.NumberStyles.HexNumber);
vBulletin® v4.2.5, Copyright ©2000-1403, Jelsoft Enterprises Ltd.