I wanted to ask if you know a way how to check in C# what .net frameworks are used through a started application.
e.g
Process process = new Process();
process.StartInfo.FileName = applicationPath;
process.Start();
proccess.getframework() <- something like this
I'm not talking about what frameworks are installed on the computer
e.g
Process process = new Process();
process.StartInfo.FileName = applicationPath;
process.Start();
proccess.getframework() <- something like this
I'm not talking about what frameworks are installed on the computer