static void UsingAnimal() { Cachorro animal = new Cachorro { Altura = 1.3, Peso = 54 }; animal.Mover(); animal.MostrarDados(); animal.Latir(); }
static void Main(string[] args) { // Animal a = new Animal(); Cachorro a = new Cachorro(); a.Peso = 4; a.Altura = 0.8; a.Mover(); a.MostrarDados(); a.Latir(); }
static void Main() { //Animal a = new Animal(); Cachorro a = new Cachorro(); a.Peso = 4; a.Altura = 0.8; a.nome = "Sheila"; a.Mover(); a.MostrarDados(); a.Latir(); }