Dimitri C.
Dimitri C.

Reputation: 22496

How to avoid MissingMethodException?

If .NET 3.5 is installed, but not .NET 3.5 SP1, WaitHandle.WaitOne(int) throws a MissingMethodException. I'd like to be notified earlier on if the correct version of the .NET libraries is not available, for example when the application is started. Is this possible?

Update: So my question question is twofold:

Upvotes: 3

Views: 257

Answers (1)

Boris Modylevsky
Boris Modylevsky

Reputation: 3099

You can check Framework version in the registry, take a look: so

Upvotes: 1

Related Questions