How come this string is valid to open with VLC via a Process:
string fileToPlay = @"C:\Videos\Movies\Movie title.avi";
But this one isn't:
string fileToPlay = @myMovie;
Where the value of the variable myMovie is
"C:\Videos\Movies\Movie title.avi"
Process.Start(vlcPath, fileToPlay );