R
robert112
Question... Can one not use ThreadPool.QueueUserWorkItem with an
anonymous method like so:
ThreadPool.QueueUserWorkItem(delegate
{
//perform IO bound operation.
});
Why did the asp.net team create the directive async=true way of
creating async pages???
Will the QueueUserWorkItem method not do the same thing???
Thanks.
anonymous method like so:
ThreadPool.QueueUserWorkItem(delegate
{
//perform IO bound operation.
});
Why did the asp.net team create the directive async=true way of
creating async pages???
Will the QueueUserWorkItem method not do the same thing???
Thanks.