Example #1
0
        public static string ToHexString(this int value)
        {
            Hex32 rtn = value;

            return(rtn.ToString());
        }
Example #2
0
        public string CreateHex32WithValidIntValue_ShouldGiveCorrectHexValue(int value)
        {
            Hex32 hex = new Hex32(value);

            return(hex.ToString());
        }
Example #3
0
 public string CreateHex32WithValidIntValue_ShouldGiveCorrectHexValue(int value)
 {
     Hex32 hex = new Hex32(value);
     return hex.ToString();
 }