AdminJun 231 min readSwicth Case Example for C#This console application use switch&case for detecting the day type which represents the simple example for C# Console.WriteLine("type a...
AdminJun 71 min readC# Console.Read()This code only allows you input one character. Console.WriteLine("Input a character:"); int ch = Console.Read(); Console.Write("Character...