Esempio n. 1
0
        public string ToStructHex()
        {
            var output = "{ " + "0x" + MyAddress.toStringHex() + ", " + "0x" + Value.toStringHex() + " },";

            return(output);
        }
Esempio n. 2
0
        public string ToStringHexCSV()
        {
            var output = "0x" + MyAddress.toStringHex() + ";" + "0x" + Value.toStringHex();

            return(output);
        }