I have declared a method in another class and it has an error \"not all code paths return a value\"
I would like it to return a true or false value to the main progr
public static Boolean SearchFiles(string path1, string path2) { if(isIdentical == false) { return false; } else { return true; } }