Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 327 Bytes

variables-formatting.md

File metadata and controls

16 lines (11 loc) · 327 Bytes

Variables formatting

Zero padding

Reads value of i, converts into a string and add a zero to the left if value is less than 10

text = i.ToString("D2");

Print the hex equivalent of any character

keyPressed = "a";
Log.Info(BitConverter.ToString(Encoding.Default.GetBytes(keyPressed)));