Does C# support a variable number of arguments?
If yes, How does C# support variable no of arguments?
What are the examples?
How are variable argum
Yes, params:
public void SomeMethod(params object[] args)
params has to be the last argument and can be of any type. Not sure if it has to be an array or just an IEnumerable.