5 ms·
I use "&" and "|" when i use enums, that act as options. I.e. var myCarExtras = Extra.Radio | Extra.PowerWindows; Where Extra = { Radio = 1, PowerWindo
by 1337Coder 13y ago
I use "&" and "|" when i use enums, that act as options.
I.e. var myCarExtras = Extra.Radio | Extra.PowerWindows;
Where Extra = {
Radio = 1,
PowerWindows = 2,
Tint = 4,
Rims = 8
};
Then I can do:
if (Tint | powerWindows) {
return totalPrice + 1000;
}
- BruceIV 13y agoC# programmer? I think this is one of the nicer little features in that language.