How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T13:03:36Zhttp://stackoverflow.com/feeds/question/840364http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/840364/how-do-i-check-for-type-equality-is-operator-or-x-gettype-typeofxtype-in1How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython?Josh Kodroff2009-05-08T15:22:59Z2009-07-08T20:36:19Z
<blockquote>
<p><strong>Duplicate:</strong> <a href="http://stackoverflow.com/questions/152580/whats-the-canonical-way-to-check-for-type-in-python">What’s the canonical way to check for type in python?</a></p>
</blockquote>
<p>How do I check for type equality in IronPython?</p>
<p>I need the equivalent of the following C# code in IronPython:</p>
<pre><code>if (x.GetType() == typeof(xType))
</code></pre>
<p>or</p>
<pre><code>if (x is xType)
</code></pre>
http://stackoverflow.com/questions/840364/how-do-i-check-for-type-equality-is-operator-or-x-gettype-typeofxtype-in/840409#8404091Answer by Josh Kodroff for How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython?Josh Kodroff2009-05-08T15:29:49Z2009-05-08T15:29:49Z<pre><code>from System import *
if x.GetType() == Type.GetType(xType):
</code></pre>
http://stackoverflow.com/questions/840364/how-do-i-check-for-type-equality-is-operator-or-x-gettype-typeofxtype-in/1100425#11004250Answer by pbartek for How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython?pbartek2009-07-08T20:36:19Z2009-07-08T20:36:19Z<p>Say C is a static class, not fully qualified but imported into the iron python script
x is an instance of C
And A.B.C is the fully qualified name</p>
<p>Why don't these work?</p>
<pre><code>x.GetType() == Type.GetType("A.B.C")
</code></pre>
<p>OR</p>
<pre><code>x is Type.GetType("A.B.C")
</code></pre>
<p>OR </p>
<pre><code>x is C
</code></pre>
<p>OR</p>
<pre><code>x.GetType() == Type.GetType(C)
</code></pre>