ThreadPool object available on .NETMF?

hi,
i was wondering if it is possible to use this:
ThreadPool.QueueUserWorkItem(new WaitCallback(DoWork), (object)s);

or is the threading for .NET MF not have that object?
Thanks

@ contractorwolf

No, there is no ThreadPool in .NET MF. You need to manualy create and manage your threads or timers.

boo, that would have solved my problem

thanks @ Gralin