C# - Is it possible to have null params?

Viewed 28438
public void Foo(params string[] values)
{
}

Is it possible that values can ever be null, or will it always be set with 0 or more items?

4 Answers
Related