I have googled some examples of C# default string parameters and found that is like this.
string Exceptions = "John"
I need to set the default value for a string [] but y haven't found how can I set an string array as default value for a C# method.
static int startapp(string Source, string Destination, string[] Exceptions = { "John", "Paul", "Mary" })
{
//do something
}