Can I achieve
if (a == "b" || "c")
instead of
if (a == "b" || a== "c")
?
|
Can I achieve
instead of
?
| |||||||||||||
feedback
|
|
No, you can do:
if you have the LINQ extensions available, but that's hardly an improvement. In response to the comment about performance, here's some basic timing code. Note that the code must be viewed with a critical eye, I might have done things here that skew the timings. The results first:
All the code was executed twice, and only pass nr. 2 was reported, to remove JITting overhead from the equation. Both passes executed each type of check one million times, and executed it both where the element to find was one of the elements to find it in (that is, the if-statement would execute its block), and once where the element was not (the block would not execute). The timings of each is reported. I tested both a pre-built array and one that is built every time, this part I'm unsure how much the compiler deduces and optimizes away, there might be a flaw here. In any case, it appears that using a switch-statement, with or without interning the string first, gives roughly the same results as the simple or-statement, which is to be expected, whereas the array-lookup is much more costly, which to me was also expected. Please tinker with the code, and correct (or comment) it if there's problems. And here's the source code, rather long:
| ||||
feedback
|
|
Well, the closest to that you can get is:
| |||||||||
feedback
|
|
No, not with that syntax. But there are many options to code that.
Maybe you could do some operator overloading and get your syntax working, but this really depends on what you want to achieve and is hard to tell from your simple example. | |||
|
feedback
|
|
You can use Regular Expressions:
If the contents of "a" can be longer than one character use this:
| ||||
|
feedback
|
|
You can in certain situations. Namely, flagged enumerations:
is equivalent to :
The reason for this has to do with bit masks. In binary,
So when we use the | operator, we do a bit-by-bit comparison looking for any 1's in the column and copy them into the result. If there are no 1's in the column, you copy a 0.
Then when we apply the & operator, we look for 1's in all rows in each column before copying a 1.
Which is > 0, thus returning true. Oddly enough, this is the most efficient way to do it, since it saves you a numerical comparison (>) and a logical operator (||), which does all that fancy short circuiting and whatnot. | |||
|
feedback
|
|
No, this isn't how the or operator (||) works in C#. An alternate solution, though it makes the code less readable, is to create a function that checks for the value you want, something similar to:
| ||||
|
feedback
|