WaitHandle NOT asbstract as the .NET SDK is stating

  • Thread starter Thread starter Bob Rock
  • Start date Start date
B

Bob Rock

Hello,

did anyone notice that the WaitHandle class is not abstract as the
..NET SDK documentation says?


Bob Rock
 
Bob Rock said:
did anyone notice that the WaitHandle class is not abstract as the
.NET SDK documentation says?

What makes you think it isn't abstract? It looks abstract to me:

using System;
using System.Threading;

class Test
{
static void Main(string[] args)
{
Console.WriteLine (typeof(WaitHandle).IsAbstract);
}
}

prints

True
 
Back
Top