I am trying to create a program to copy all the files from one directory to another. But I am running in a basic issue. It says indentifier expected when I try to compile on
Your method RecursiveCopy has two parameters listed without their types. It should be this:
RecursiveCopy
static void RecursiveCopy(string origDir, string destDir)