Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApplication9
- {
- class Program
- {
- static void Main(string[] args)
- {
- string test = Console.ReadLine(); //skriv in en rad med stora och små bokstäver
- Console.WriteLine(test);
- Console.WriteLine(test.ToLower());
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment