Anonymous methods can be assigned a signature : delegate anonymous « Language Basics « C# / C Sharp






Anonymous methods can be assigned a signature

  

using System;
using System.Threading;


public delegate int DelegateClass(out int param);

public class Starter {
    public static void Main() {
        int var;
        DelegateClass del = delegate(out int inner) {
            inner = 12;
            Console.WriteLine("Running anonymous method");
            return inner;
        };
        del(out var);
        Console.WriteLine("Var is {0}", var);
    }
}

   
  








Related examples in the same category

1.Define an anonymous method with the delegate keyword.
2.Anonymous methods can refer to local variables of the containing function and class members within the scope of the method definition
3.Anonymous methods can be assigned a signature, which is appended to the delegate keyword.
4.two delegates and anonymous methods
5.Local variables used in an anonymous method are called outer variables.
6.Associating the delegate with an anonymous method.