var output = query.Select(x => x.Plant + "\t" + x.Animal + "\t" + blah blah blah);
string FilePath = @"C:\output.txt";
File.WriteAllLines(FilePath, output);
The error I get when switching the target framework from 4.0 to 3.5 is:
Error 14 The best overloaded method match for 'System.IO.File.WriteAllLines(string, string[])' has some invalid arguments
What is the easiest way to make the switch to the 3.5 Framework without having to change too much code and still keep its functionality?