How can I compare a text file contents to a string variable using c#
Compare text file contents to a string variable using C#
2744
16-Oct-2013
Anonymous User
16-Oct-2013var fileContents = File.ReadAllText(fileName);
return testString == filecontents;