背景资料(基于我的第一个问题): 我想整合到我的" GUI.exe" (用c#编写)帮助功能。 然后,当我想在我的cmd开始 - > " GUI.exe --h"帮助功能。
尝试了stackoverflow-帖子: 我尝试使用此解决方案:Adding "--help" parameter to C# console application。
static bool ShowHelpRequired(IEnumerable<string> args)
{
return args.Select(s => s.ToLowerInvariant())
.Intersect(new[] { "help", "/?", "--help", "-help", "-h" }).Any();
}
当前问题:
我不知道在哪里可以整合帮助功能。 我不知道我的Microsoft Visual Studio中的特定设置是否必须配置。
提前感谢您的支持。
答案 0 :(得分:5)
在主要方法中调用ShowHelpRequired
:
static void Main(string[] args)
{
if(ShowHelpRequired(args))
{
Console.WriteLine("Show help message here");
}
}