=>

如:

ThreadPool.QueueUserWorkItem(
(obj) =>
{
Send(mail);
}
);

是怎么实现

ThreadPool.QueueUserWorkItem(new WaitCallback(PoolFunc));