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

Popular posts from this blog

Add email recipient to all new Trac tickets -

400 Bad Request on Apache/PHP AddHandler wrapper -

php - Change action and image src url's with jQuery -