Let's say I have the following list:
var someList = new List<SomeObject>();
Which has the following entries:
SomeObject.Field
Apple
Orange
FruitBowl_Outside
Banana
Grape
FruitBowl_Inside
I would like to sort this list so that FruitBowl
entries go at the bottom, and that subject to this, everything is alphabetic.
In order words:
SomeObject.Field
Apple
Banana
Grape
Orange
FruitBowl_Inside
FruitBowl_Outside