It's shown that 'as' casing is much faster than prefix casting, but what about 'is' reflection? How bad is it? As you can imagine, searching for 'is' on Google isn't terribly effective.
|
2
|
|||
|
|
|
There are a few options:
The is test is quick, because it only does the first part of a full casting operation. The as operator is quicker than a classic cast because doesn't throw an exception if the cast fails (which makes it good for situations where you legitimately expect that the cast might fail). If you just need to know if the variable bar is a Essentially every cast needs to do the equivalent of an |
||
|
|
|
|
"is" is basically equivalent to the "isinst" IL operator -- which that article describes as fast. |
||
|
|
|
|
It should be quick enough to not matter. If you are checking the type of an object enough for it to make a noticeable impact on performance you need to rethink your design |
||
|
|
|
|
The way I learned it is that this:
is slower than this:
Is it slow enough to matter? Probably not, but it's such a simple thing to pay attention for, that you might as well do it. |
||
|
|
