I received this code in a previous question:
double d = double.Parse ("$10.10", NumberStyles.AllowCurrencySymbol | NumberStyles.AllowDecimalPoint | NumberStyles.AllowParenthesis)NumberStyles.Currency);
I have seen the '|' used to join parameters together before, but I don't understand what exactly it does. I know it's a bitwise OR, but how does it allow me to pass multiple flags?
Thanks.
Duplicate: http://stackoverflow.com/questions/276706/what-are-bitwise-operators
