private static int ShowAboutAndReturnExitCode(AboutOptions _)
        {
            Console.WriteLine("Learn C# with classical Battleship game.");
            Console.WriteLine("By Rainer Stropek");
            Console.WriteLine(@"
              |    |    |                 
             )_)  )_)  )_)              
            )___))___))___)\            
           )____)____)_____)\\
         _____|____|____|____\\\__
---------\                   /---------
    ^^^^^ ^^^^^^^^^^^^^^^^^^^^^
      ^^^^      ^^^^     ^^^    ^^
           ^^^^      ^^^");
            return(0);
        }
Example #2
0
 public int Init(AboutOptions opts)
 {
     Console.WriteLine("This is a CLI console application built with" +
                       " .Net core that publishes events to Salesforce.");
     return(0);
 }