Modify your Main method to accept a string array.
Checkout this code snippet:
static void Main(string[] args)
{
if (args.Length > 0)
{
//check the arguments
if (args[0].ToLower().Trim().Substring(0,2) == "/c")
{
...
}
else // there are no arguments
{
...
}
}