In a C# application, I\'d like to determine whether another .NET application is a Console application or not.
Can this be done using the reflection APIs?
EDI
I don't think there's a scientific way to determine it, the closest workaround that comes to my mind is using reflection to check if the application references and loads the WinForms assembly, but I'm not entirely sure. Might give it a try.