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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top