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
You may be interested in Enums instead, which can be programmatically converted from name to value and vice versa.