Learn To Program C# by making an RPG Console Game - Part 2

3 years ago
76

In the 2nd installment of this C# absolute beginner series you will learn about Debugging, MetaData, Overloading, Types, Arguments, Returns, Access Modifiers, Variables, Bugs, Enums, ToUpper/ToLower, IF ELSE, string concatenation, string interpolation... and more!

Relevant Video Links:
https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/access-modifiers
http://www.patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/built-in-types

Title Code:
Console.WriteLine("***************************************************");
Console.WriteLine("* *");
Console.WriteLine("* ┌─┐┌─┐┌┐┌┌─┐┌─┐┬ ┌─┐ ┌─┐┬─┐┌─┐┬ ┬┬ *");
Console.WriteLine("* │ │ ││││└─┐│ ││ ├┤ │ ├┬┘├─┤││││ *");
Console.WriteLine("* └─┘└─┘┘└┘└─┘└─┘┴─┘└─┘ └─┘┴└─┴ ┴└┴┘┴─┘ *");
Console.WriteLine("* *");
Console.WriteLine("***************************************************");

Loading comments...