using System;
public class App
{
public static void Main()
var base1 = new Base();
// Casting will be ignored
var ignore = (Ignore)base1;
}
public class Base { }
public class Ignore : Base { }