I am uploading files to s3 using amazons s3 web service.
It takes about 1 second per file, is there a way I could fire up multiple threads to do this in parallel?
Say I have a method that does the upload call:
public void uploadToS3(string filename);
how can I call fire up 3 threads and each make this call?