Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 25, 2016 20:01
Herencia clase Comida. [OrtizOL]
public class Comida : IEquatable<Comida>
{
public virtual bool Equals(Comida otroObjeto)
{
throw new NotImplementedException();
}
}
public class ComidaCocinada : Comida, IEquatable<ComidaCocinada>
{
public virtual bool Equals(ComidaCocinada otroObjeto)
{
throw new NotImplementedException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment