Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SplitByWordCasing
- {
- class SortingListAndArrays
- {
- static void Main()
- {
- List<int> numbers = new List<int>()
- {
- 1,3,6,2,7,10,100,44,11,204
- };
- Console.WriteLine(string.Join(" ",numbers));
- numbers.Sort();
- Console.WriteLine(string.Join(" ",numbers));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment