HOTSPOT

HOTSPOT
You are developing an application in C#.
You need to create an anonymous method.
You write the following code segment.


Hot Area:

microsoft-exams

5 thoughts on “HOTSPOT

  1. delegate int AddNumbers(int x, int y);

    AddNumbers add = delegate(int x, int y)
    {
    return x + y;
    };

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.