📔
Codenewb
  • Codenewb
  • [Change Log]
  • C#
    • Pluralsight
      • C Sharp from Scratch
      • Practice exercises
  • Javascript
    • Codeacademy
      • Getting Started with JavaScript
      • Project: Kelvin Weather
      • Project: Dog Years
      • JavaScript version history
      • Conditional Statements
    • Pluralsight
      • Practice exercises
        • HelloWorld.cs
        • HelloWorld2.cs
        • HelloWorld3.cs
  • Powershell
    • Pluralsight
      • Notebook
    • Powershell in a Month of Lunches
  • Python
    • Codeacademy
      • Learn Python 3
      • Practice exercises
        • Basic hello world
        • My name is Inigo Montoya!
        • I would walk 500 miles
    • Pluralsight
      • Python Getting Started
Powered by GitBook
On this page

Was this helpful?

  1. Javascript
  2. Pluralsight
  3. Practice exercises

HelloWorld2.cs

using System;

namespace Hello
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hey I made this in Visual Studio 2017 and did it especially for " + args[0]);
        }
    }
}

/// Now you can run this with something like "Hello mom" and the program will use "mom" as an arg in
/// the output!  Ha ha ha!  La la la!  Fa fa fa!  I'm pretty much a master coder at this point.
PreviousHelloWorld.csNextHelloWorld3.cs

Last updated 5 years ago

Was this helpful?