IsInst() private method

private IsInst ( Type type ) : void
type Type
return void
 internal void WriteInstanceOf(SourceInfo source, Type type, CodeGenerator ilg)
 {
     {
         source.Load(typeof(object));
         ilg.IsInst(type);
         ilg.Load(null);
         ilg.Cne();
         return;
     }
 }