We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a14ede commit 7cf52a5Copy full SHA for 7cf52a5
src/ConsoleAppFramework/ConsoleAppBaseCode.cs
@@ -235,7 +235,7 @@ public static Action<string> LogError
235
/// ConsoleApp.Run(args, Foo);<br/>
236
/// ConsoleApp.Run(args, &Foo);<br/>
237
/// </summary>
238
- public static void Run(string[] args)
+ public static void Run(string[] args, Delegate command)
239
{
240
}
241
@@ -245,7 +245,7 @@ public static void Run(string[] args)
245
/// ConsoleApp.RunAsync(args, Foo);<br/>
246
/// ConsoleApp.RunAsync(args, &Foo);<br/>
247
248
- public static Task RunAsync(string[] args)
+ public static Task RunAsync(string[] args, Delegate command)
249
250
return Task.CompletedTask;
251
0 commit comments