T
Tee
Hi,
When I have a function like:
private string xyz(string Text)
I can call it without passing in a string with xyz("") or xyz(string.Empty)
but if the paramater needed is an array like:
private string xyz(string[] ArrayName)
how do I call it without giving an array using the same idea as above?
Thanks,
Tee
When I have a function like:
private string xyz(string Text)
I can call it without passing in a string with xyz("") or xyz(string.Empty)
but if the paramater needed is an array like:
private string xyz(string[] ArrayName)
how do I call it without giving an array using the same idea as above?
Thanks,
Tee