using System;
class Foo
{
static void Main(ref string[] args)
{
Console.WriteLine("Hello World of ref!");
Console.ReadLine();
}
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.ReadLine();
}
}
- A. non compila
- B. compila con warning
- C. compila senza warning
A proposito del mondo dei ref, approfitto per passare questo consiglio di Brad Abrams (SLAR, p. 304):
"In general by reference parameters make the APIs much harder to use and should be avoided in good library design"
Chiaro che il "good library design" non c'entra nulla col "good quiz design" :-)