Add comment to usage function

This commit is contained in:
Robert Morrison 2022-06-20 02:53:39 +01:00
parent a9cd262e60
commit cad446c282
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

View File

@ -111,6 +111,14 @@ class Program
List<string> res = new List<string>(); List<string> res = new List<string>();
List<string> files = GetAllFiles(directory); List<string> files = GetAllFiles(directory);
void Usage()
{
/*
* This function will be called when argument errors happen. This will
* also be called if the user triggers the help flag currently this
* function throws a not implemented exception since it I cannot write
* the usage until I have other functionality
*/
throw new NotImplementedException(); throw new NotImplementedException();
} }
static Tuple<bool,Dictionary<string,string>?> CheckDeps(List<string>? dependencies) static Tuple<bool,Dictionary<string,string>?> CheckDeps(List<string>? dependencies)