fork download
  1. using static System.Console;
  2. using System;
  3.  
  4. class Exemplo {
  5. public Func<bool> VerificaAlgo { get; set; }
  6. public void FazAlgo() {
  7. if (VerificaAlgo()) WriteLine("é apenas um teste");
  8. else WriteLine("a coisa é séria");
  9. }
  10. }
  11.  
  12. class Program {
  13. public static void Main() {
  14. Exemplo teste = new Exemplo();
  15. teste.VerificaAlgo = new Func<bool>(() => Console.ReadLine() == "teste");
  16. teste.FazAlgo();
  17. }
  18. }
  19.  
  20. //https://pt.stackoverflow.com/q/116095/101
Success #stdin #stdout 0.02s 15736KB
stdin
Standard input is empty
stdout
a coisa é séria