DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ ToHex()

proto string ToHex ( )
protected

Integer to hex (as string)

Возвращает
string Converted integer as hexadecimal value
int num = 10;
string s = num.ToHex();
Print(s);
>> s = '0xA'
proto void Print(void var)
Prints content of variable to console/log.