D
Dave Sexton
Hi,
I don't think it exists in the FCL.
It's not really that difficult without one though. You can take a string[] in
the main method as such:
static void Main(string[] args)
{
}
From here it's a simple matter of iterating the string collection and figuring
out if each value corresponds to a switch that is supported in your
application. The supported formats of the switches are entirely up to you.
I don't think it exists in the FCL.
It's not really that difficult without one though. You can take a string[] in
the main method as such:
static void Main(string[] args)
{
}
From here it's a simple matter of iterating the string collection and figuring
out if each value corresponds to a switch that is supported in your
application. The supported formats of the switches are entirely up to you.