What's wrong with this code snippet?

SayHi () needs to be static or use an instance of ProgramSayHi () needs to return a void-type valueConsole.WriteLine () can't be called without using another namespaceMain () doesn't do anything with its command-line arguments

Perfect! 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.