I have several methods that are declared in the Main method.
Although how could I put a loop in, so in this case OutputChanges() would loop around to FileChanges(). And is it possible to put an break / interval of say 10 seconds inbetween the loop?
static void Main(string[] args)
{
FileChanges();
FolderChanges();
OutputChanges();
}
You don’t mention how many times you want to loop…so I’ll go with the infinite loop (using
Thread.Sleep()to halt execution for 10 seconds between iterations):