Thursday, February 14, 2013

Guess the output ?

 


static void Main(string[] args)
{
    NameValueCollection Collection = new NameValueCollection();

    Console.WriteLine("Does NameValueCollection magically create items? " + Collection["foo"] != null ? " Yes, it does!" : "No, it doesn't.");

}

No comments:

Post a Comment