tags:

views:

104

answers:

1

My application creates files with the .mhm file extension.

When one of these files are opened I want my application to start and open the file.

Right now the application starts up but the files are not opened.

What do I do?

+2  A: 

The name of the file you want to execute is the in the args parameter of your main method.

idstam
how can I give the args parameter of main method it in C# 2008?
mohammad reza
public static void min(string[] args){}
idstam