How to avoid MissingMethodException?
Posted
by Dimitri C.
on Stack Overflow
See other posts from Stack Overflow
or by Dimitri C.
Published on 2010-05-11T09:16:09Z
Indexed on
2010/05/11
10:24 UTC
Read the original article
Hit count: 288
.NET
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:
- a) How can I determine which version of the .NET library is required by an application?
- b) How can I determine the currently installed version of the .NET library?
© Stack Overflow or respective owner