"Executing" data file
-
If I have a data file with a specific extension, and I register this extension to a C# executable. How can the program load the data file? I.e., I want to start the executable by double-clicking on an appropriate data file, and have the executable load that data file. Thanks, Tom
-
If I have a data file with a specific extension, and I register this extension to a C# executable. How can the program load the data file? I.e., I want to start the executable by double-clicking on an appropriate data file, and have the executable load that data file. Thanks, Tom
-
The name of the file is send as argument to the application. The args parameter of the main method is populated with the arguments that is sent to the application.
Despite everything, the person most likely to be fooling you next is yourself.