My mind's gone a bit blank, so has anyone got a neat solution for parsing a hex (colour) value string like "FF8048020" to an Int? Bit.ParseInt("FF8048020", 16) throws a NumberFormatException, presumably because it thinks this is too large a positive number to be represented by an Int. I can think of various laborious ways of doing this but I feel that there must be a simple way that I am overlooking
Last edited: