using static System.Console;
public Func<bool> VerificaAlgo { get; set; }
if (VerificaAlgo()) WriteLine("é apenas um teste");
else WriteLine("a coisa é séria");
public static void Main() {
Exemplo teste = new Exemplo();
teste.VerificaAlgo = new Func<bool>(() => ReadLine() == "teste");