I want to check the type of an object. I only want to return true if the type is exact the same. Inherited classes should return false.
eg:
class A {}
class B : A {}
B b = new B();
// The next line will return true,
// but I am looking for an expression that returns false here
if(b is A)