System.RuntimeTypeHandle.IsInstanceOfType C# (CSharp) Method

IsInstanceOfType() private method

private IsInstanceOfType ( Object o ) : bool
o Object
return bool
        internal extern bool IsInstanceOfType(Object o);

Usage Example

Example #1
0
 public override bool IsInstanceOfType([NotNullWhen(true)] object?o) => RuntimeTypeHandle.IsInstanceOfType(this, o);
All Usage Examples Of System.RuntimeTypeHandle::IsInstanceOfType