Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Command line inputs in C#

This code is here to explain the inputs through command line args.

  1. // Namespace Declaration
  2. using System;
  3.  
  4. class Welcome
  5. {
  6. // Main begins program execution.
  7. static void Main(string[] args)
  8. {
  9. // Write to console
  10. Console.WriteLine("Hello, {0}!", args[0]);
  11. }
  12. }