I have a WPF application which starts without a window and has a main method as such in the App.xaml.cs,
static void Main(String[] args)
once the application is loaded and running I want to continue to send commandline arguments to it IF POSSIBLE e.g.
myApp.exe "string 1", "string 2"
And get it to react appropriately. Is this possible and if so how or what method should I use the do achieve this?