G Guest Feb 7, 2004 #1 Is there a way a .net application (c#) can tell if the .net framework is installed
D David Sworder Feb 7, 2004 #3 The following C# method will tell you if the .NET framework is installed: public static bool IsFrameworkInstalled{ return true; } In other words, if your C# code is executing at all, the framework must be installed.
The following C# method will tell you if the .NET framework is installed: public static bool IsFrameworkInstalled{ return true; } In other words, if your C# code is executing at all, the framework must be installed.