c# - Custom assembly attribute values change from int to hex? -
i have custom attribute(takes int) keep track of database compatibility version numbers. however, seems number can multiple of 10, otherwise number become hex format(i use reflector verify this). example:
[assembly: foocompatibility(100)] or
[assembly: foocompatibility(110)] are correctly shown after build,
[assembly: foocompatibility(101)] becomes
[assembly: foocompatibility(0x65)] in reflector.
any ideas? in advance.
Comments
Post a Comment