JensNTI

L tolower

Jun 3rd, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication9
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string test = Console.ReadLine(); //skriv in en rad med stora och små bokstäver
  10.  
  11.             Console.WriteLine(test);
  12.             Console.WriteLine(test.ToLower());
  13.             Console.ReadLine();
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment