class Test { static void f(ref int a, out int b) { a = 10 + b; } static void Main(string[] args) { int a; int b = 5.0; f(ref a, out b); } }
Login in to like
Login in to comment
or Read more about C# Quizzes
Login in to like
Login in to comment