I have a C# application that creates multiple tasks (class System.Threading.Tasks.Task). Each of these tasks writes to a file, each one writes to a different file from the others, using a different StreamWriter instance.
Microsoft's docs says that: "By default, a StreamWriter is not thread safe."
This means that I could run into problems also in the case described above?