Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- /*str.ToLower(); Прави големи на малки букви(case insensitive)*/
- class UsingToLower
- {
- static void Main()
- {
- string str = "ABV";
- Console.WriteLine(str.ToLower());//"avb"
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment