SayHi ()
needs to be static or use an instance of Program
SayHi ()
needs to return a void
-type valueConsole.WriteLine ()
can't be called without using another namespaceMain ()
doesn't do anything with its command-line argumentsPerfect! We need to make SayHi ()
static or use an instance of Program
to call it.
Oh noes! We need to make SayHi ()
static or use an instance of Program
to call it.