Multiple choice Which of the following is the incorrect declaration of the delegate in C# language? delegate int ThisDelegate (int x) public delegate int ThisDelegate (String x) public delegate char ThisDelegate (String x) delegate char ThisDelegate (String) none of the above Reveal answer Fill a bubble to check yourself D Correct answer Explanation This declaration is incorrect as there is no parameter name defined for the String variable.