What are the performance characteristics of 'is' reflection in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:48:16Z http://stackoverflow.com/feeds/question/57701 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57701/what-are-the-performance-characteristics-of-is-reflection-in-c 7 What are the performance characteristics of 'is' reflection in C#? Ben Collins 2008-09-11T21:25:23Z 2008-09-11T22:39:58Z <p>It's <a href="http://www.codeproject.com/KB/cs/csharpcasts.aspx" rel="nofollow">shown</a> 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.</p> http://stackoverflow.com/questions/57701/what-are-the-performance-characteristics-of-is-reflection-in-c/57705#57705 6 Answer by Curt Hagenlocher for What are the performance characteristics of 'is' reflection in C#? Curt Hagenlocher 2008-09-11T21:27:50Z 2008-09-11T21:27:50Z <p>"is" is basically equivalent to the "isinst" IL operator -- which that article describes as fast.</p> http://stackoverflow.com/questions/57701/what-are-the-performance-characteristics-of-is-reflection-in-c/57707#57707 3 Answer by rpetrich for What are the performance characteristics of 'is' reflection in C#? rpetrich 2008-09-11T21:28:23Z 2008-09-11T21:28:23Z <p>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</p> http://stackoverflow.com/questions/57701/what-are-the-performance-characteristics-of-is-reflection-in-c/57713#57713 3 Answer by swilliams for What are the performance characteristics of 'is' reflection in C#? swilliams 2008-09-11T21:32:05Z 2008-09-11T21:32:05Z <p>The way I learned it is that this:</p> <pre><code>if (obj is Foo) { Foo f = (Foo)obj; f.doSomething(); } </code></pre> <p>is slower than this:</p> <pre><code>Foo f = obj as Foo; if (f != null) { f.doSomething(); } </code></pre> <p>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.</p> http://stackoverflow.com/questions/57701/what-are-the-performance-characteristics-of-is-reflection-in-c/57828#57828 10 Answer by Daniel Fortunov for What are the performance characteristics of 'is' reflection in C#? Daniel Fortunov 2008-09-11T22:39:58Z 2008-09-11T22:39:58Z <p>There are a few options:</p> <ol> <li>The <strong>classic cast</strong>: <code>Foo foo = (Foo)bar</code></li> <li>The <strong><code>as</code> cast operator</strong>: <code>Foo foo = bar as Foo</code></li> <li>The <strong>'is' test</strong>: <code>bool is = bar is Foo</code></li> </ol> <p><hr /></p> <ol> <li>The <strong>classic cast</strong> needs to needs to check if bar can be safely cast to Foo (quick), and then actually do it (slower), or throw an exception (really slow).</li> <li>The <strong><code>as</code> operator</strong> needs to check if bar can be cast, then do the cast, or if it cannot be safely cast, then it just returns null.</li> <li>The <strong><code>is</code> operator</strong> just checks if bar can be cast to Foo, and return a boolean.</li> </ol> <p>The <strong>is</strong> test is quick, because it only does the first part of a full casting operation. The <strong>as</strong> 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).</p> <p>If you just need to know if the variable <strong>bar</strong> is a <strong><code>Foo</code></strong> then use the <strong>is</strong> operator, <strong>BUT</strong>, if you're going to test if <strong>bar</strong> is a <strong>Foo</strong>, and if so, <strong>then cast it</strong>, then you should use the <strong>as</strong> operator.</p> <p>Essentially every cast needs to do the equivalent of an <code>is</code> check internally to begin with, in order to ensure that the cast is valid. So if you do an <code>is</code> check followed by a full cast (either an <code>as</code> cast, or with the classic cast operator) you are effectively doing the <code>is</code> check twice, which is a slight extra overhead.</p>