Overview If you want to delete or remove all the items in a SharePoint list you need to iterate through each item and perform a delete. Most of the examples on the web iterate through each item to do the delete. The problem there is that each delete action makes a request to the server and a huge list is going to take a long time. You could always delete the entire list and recreate it but that would mean recreating the structure as well as the guid being changed.
The better method would be to make a single request with all the delete commands batched together as shown in the code sample. Click on the Releases tab to download the solution.
If you'd like to just take a quick look at the code see
http://www.merill.net/post/2008/02/Efficiently-Delete--Purge-All-Items-from-a-SharePoint-List.aspx