I want to pass two parameters to the following code, by giving numbers not from command line in debug
For example I want pass 4 4 to the code using entered values from user not fixed in command line to the :
class Program
{
static void Main(string[] args )
{
if (args.Length > 0)
new Program(int.Parse(args[0] ));
Console.ReadLine();
Console.ReadLine();
Console.Read();
Console.ReadKey();
}
}