Define an anonymous method with the delegate keyword. : delegate anonymous « Language Basics « C# / C Sharp






Define an anonymous method with the delegate keyword.

  

using System;
using System.Threading;

public delegate void DelegateClass();

public class Starter {
    public static void Main() {
        DelegateClass del = delegate {
            Console.WriteLine("Running anonymous method");
        };
        del();
    }
}

   
  








Related examples in the same category

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