public interface IElement
string Nombre { get; set; }
public interface IAnotherElement : IElement
new string Nombre { get; }
public class Element : IElement
public string Nombre { get; set; }
public class AnotherElement : IAnotherElement
public string Nombre { get; }
public class AnotherElement2 : IAnotherElement
new public string Nombre { get; }
public static void Main()