Skip to content
Permalink
Browse files

Create Testing Windows URL Handler.cs

  • Loading branch information
fahad-israr committed Mar 5, 2020
1 parent d07c9a7 commit 7f82e9e2b58152fd3f03c3c35c909073e941f71b
Showing with 31 additions and 0 deletions.
  1. +31 −0 Adding Custom Url handlers/Windows/Testing Windows URL Handler.cs
@@ -0,0 +1,31 @@
/*Test File for Custom URL Handler Testing */
using System;
using System.Collections.Generic;
using System.Text;

namespace Ide
{
class Program
{
static string ProcessInput(string s)
{
// TODO Verify and validate the input
// string as appropriate for your application.
return s;
}

static void Main(string[] args)
{
Console.WriteLine("Ide.exe invoked with the following parameters.\r\n");
Console.WriteLine("Raw command-line: \n\t" + Environment.CommandLine);

Console.WriteLine("\n\nArguments:\n");
foreach (string s in args)
{
Console.WriteLine("\t" + ProcessInput(s));
}
Console.WriteLine("\nPress any key to continue...");
Console.ReadKey();
}
}
}

0 comments on commit 7f82e9e

Please sign in to comment.
You can’t perform that action at this time.