|
<< Click to Display Table of Contents >> Delegates com GoesTo => |
![]() ![]()
|
GoesTo é isso: =>
Exemplo simples:
public class Program
{
delegate void FuncaoAnonima(string valor);
static void Main(string[] args)
{
FuncaoAnonima funcao = texto => Console.WriteLine(texto.ToUpper());
funcao("Jóia");
}
}