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?
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?