Chicken & Egg problem.

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
Back
Top