What is the output of this C# code?
delegate void d(int i);
class P {
public static void Main() {
td(new d(ff));
}
public static void td (d sf) {
sf(-9);
sf(22);
}
public static void ff (int i) {
System.Console.Write("{0} ", -(i-2));
} }
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments