is the prefix for hexadecimal values and you they're just numbers as well
I want Somar In Visual Basic Hex + Decimal
example :
int i;
i = 10; 'decimal 10
System.out.println("decimal: " + i);
System.out.println("hex: " + Integer.toHexString(i));
i = &H10; // hexa 10.. valor em decimal eh 16
System.out.println("decimal: " + i);
System.out.println("hex: " + Integer.toHexString(i));
If it's always Hex + Dec
Code:
Dim hex As Integer = Integer.Parse(TextBox1.Text, Globalization.NumberStyles.HexNumber)
Dim dec As Integer = Integer.Parse(TextBox2.Text)
TextBox3.Text = (hex + dec).ToString()