O FileSystemWatcher cria seu próprio segmento?

Eu quero que este trabalho seja feito em um segmento diferente, mas eu tenho que criar um segmento ou faz todo o trabalho em diferentes segmentos?

Gostar:

Thread fileThread = new Thread(() =>
{
    FileWatcher = new FileSystemWatcher();

    FileWatcher.Created += OnFileEvent;
    FileWatcher.Deleted += OnFileEvent;
    FileWatcher.Renamed += OnRenameEvent;
    FileWatcher.EnableRaisingEvents = true;
});

fileThread.Start();

questionAnswers(1)

yourAnswerToTheQuestion