fork download
  1. using static System.Console;
  2.  
  3. public static class Program {
  4. public static void Main(string[] args) {
  5. var gato = new Gato("Dener");
  6. WriteLine(gato.Nome);
  7. }
  8. }
  9.  
  10. public abstract class Animal {
  11. public string Nome { get; private set; }
  12. public Animal(string nome) => Nome = nome;
  13. }
  14.  
  15. public class Gato : Animal {
  16. public Gato(string nome) : base(nome) {}
  17. }
  18.  
  19. //https://pt.stackoverflow.com/q/332980/101
Success #stdin #stdout 0.02s 15748KB
stdin
Standard input is empty
stdout
Dener