Is there a way of determining the name of a constant from a given value?
For example, given the following:
public const uint ERR_OK = 0x00000000;
Ho
I don't think you can do that in a deterministic way. What if there are multiple constants with the same value?