I\'m an amateur at c# and I\'ve been unable to locate the answer to this. Perhaps I am not aware of the correct terms to use.
When a video file is dragged onto my ex
You need your application's command-line arguments. When you drop a file on your application in Explorer, Explorer opens the application with the file you dropped on it. You can select as many files as you want, drop them on your application and using this line of code, files will be an array of those command line arguments.
string[] files = Environment.GetCommandLineArgs();