From cad446c28273eb2cf291dade36c5e42fee25ee86 Mon Sep 17 00:00:00 2001 From: Robert Morrison Date: Mon, 20 Jun 2022 02:53:39 +0100 Subject: [PATCH] Add comment to usage function --- Program.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Program.cs b/Program.cs index c65cdb4..ae823de 100644 --- a/Program.cs +++ b/Program.cs @@ -111,6 +111,14 @@ class Program List res = new List(); List 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(); } static Tuple?> CheckDeps(List? dependencies)