I am wondering if this is a bug. Can't understand why would CType work this way...!

enter image description here

link|improve this question

60% accept rate
Is there any particular reason you've put a link to a screenshot, rather than simply copying your code into the question?? – AakashM Dec 2 '11 at 10:16
feedback

1 Answer

up vote 4 down vote accepted

This happens because enclosing a value in () means it is a negative number.

It is a standard financial notation for amounts that are deducted.

When a number is parsed, if NumberStyles.AllowParentheses is set for NumberStyles, then they will be interpreted as a negative value.

See Parsing numeric strings on MSDN:

NumberStyles.AllowParentheses

Parentheses can be used to indicate negative values.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.