How i can use Parallel.ForEach with DataTable it works fine with List and array but i cant get it working with DataTable it shows Error "Cannot be inferred from the usage. Try specifying the type arguments explicitly"
Parallel.ForEach(dt.Rows , row=>
{
//code here
});