Now in my project, access to the command line arguments is organized as follows:
Application.Current.Properties["value"].ToString())
I believe that if you store the arguments in a static object, the access can be simplified, and it will look like this:
MyProgramm.App.value
I am wondering how to solve this problem more correctly?