Arrange List<> in ascending order
c#, linq
Solution
use this
listCustomFields.sort();
Problem
I have a list whose type is string which i want to arrange in ascending order ``` listCustomFields = new List<String>() { "FirstName", "MiddleName", "Class" }; ```