Skip to content

Instantly share code, notes, and snippets.

@VladimirReshetnikov
Created January 17, 2014 02:21
Show Gist options
  • Select an option

  • Save VladimirReshetnikov/8467399 to your computer and use it in GitHub Desktop.

Select an option

Save VladimirReshetnikov/8467399 to your computer and use it in GitHub Desktop.
using System;
class Program
{
static void Main()
{
Foo(null);
}
static void Foo(params string[] s)
{
Console.WriteLine(s == null); // True
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment