C# Threading in a method
- by user177883
I have the following method :
public List<string> someMethod()
{
// populate list of strings
// dump them to csv file
//return to output
}
Question is: i dont want the user to wait for csv dump, which might take a while.
If i use a thread for csvdump, will it complete? before or after the return of output?