Guest User

Untitled

a guest
May 25th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class SortExample
  2. {
  3. public int IntField {get; set;}
  4.  
  5. public string StringField {get; set;}
  6.  
  7. public DateTime DateField {get; set;}
  8. }
  9.  
  10. public void SortExampleMethod(string sortExpression)
  11. {
  12. List<SortExample> list = new List<SortExample>();
  13. list.OrderBy(sortExpression);
  14. }
Add Comment
Please, Sign In to add comment