I have a List<MyClass> and I want to sort it by DateTime CreateDate attribute of MyClass.
Is that possible with LINQ ?
Thanks
|
I have a Is that possible with LINQ ? Thanks |
|||||
|
|
You can enumerate it in sorted order:
You can also use
This isn't quite the same as sorting the original list because if anyone still has a reference to the old list they won't see the new ordering. If you actually want to sort the original list then you need to use the |
|||||||||
|
|
To sort the existing list:
It is also possible to write a
for example:
|
|||
|
|
|
Here is a sample:
|
|||||||
|
|
Sure the other answers with |
|||
|
|
to use:
|
|||
|
|