Exception is occuring only on my machine: Method not found: WaitHandle.WaitOne(Int32)

后端 未结 3 622
醉梦人生
醉梦人生 2021-01-19 02:39

Exception is occuring only on my machine inside a referenced .dll: Method not found: WaitHandle.WaitOne(Int32)

This appears to be a .NET runtime version problem but

相关标签:
3条回答
  • 2021-01-19 02:59

    Thank you for the suggestions.

    The Google Groups post also points to a framework compatibility issue with the API (.NET 2.0 SP2.) To reiterate, after installing 3.5 on the machine we are still seeing the exception. .NET 3.5 should contain all API additions from 2.0 SP2.

    From the MSDN page: Supported in: 3.5 SP1, 3.0 SP2, 2.0 SP2

    0 讨论(0)
  • 2021-01-19 03:08

    From MSDN it looks like WaitHandle.WaitOne(Int32) was added in SP1. Either check for this in the source, the installer, or use the 2 parameter version.

    0 讨论(0)
  • 2021-01-19 03:10

    I found a Google Groups result that may be applicable.

    0 讨论(0)
提交回复
热议问题