Interview Questions

I was trying to use an "out int" parameter in one of my functions. How should I declare the variable that I am passing to it?

C# Interview Questions and Answers


(Continued from previous question...)

40. I was trying to use an "out int" parameter in one of my functions. How should I declare the variable that I am passing to it?

You should declare the variable as an int, but when you pass it in you must specify it as 'out', like the following:
int i;
foo(out i);
where foo is declared as follows:
[return-type] foo(out int o) { }

(Continued on next question...)

Other Interview Questions