How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:03:36Z http://stackoverflow.com/feeds/question/840364 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/840364/how-do-i-check-for-type-equality-is-operator-or-x-gettype-typeofxtype-in 1 How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython? Josh Kodroff 2009-05-08T15:22:59Z 2009-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#840409 1 Answer by Josh Kodroff for How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython? Josh Kodroff 2009-05-08T15:29:49Z 2009-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#1100425 0 Answer by pbartek for How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython? pbartek 2009-07-08T20:36:19Z 2009-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>