CHAOS.Portal.Client.Examples.Program.ShowIntro C# (CSharp) Method

ShowIntro() private method

private ShowIntro ( ) : void
return void
		private void ShowIntro()
		{
			Console.Write(@"   ________  _____   ____  _____
  / ____/ / / /   | / __ \/ ___/
 / /   / /_/ / /| |/ / / /\__ \ 
/ /___/ __  / ___ / /_/ /___/ / 
\____/_/ /_/_/  |_\____//____/");
			Console.WriteLine();
			var version = Assembly.GetAssembly(typeof(IPortalClient)).GetName().Version;
			Console.WriteLine("Portal Client (version {0}.{1}.{2}) example", version.Major, version.Minor, version.Build);
			Console.WriteLine();
		}