Imagine that you have a list called List<Foo>.
Foo is an abstract class, so this can be FooA, FooB, FooC or FooD. And I'd like to have an extension for List<T> where you can order this elements by type but sequently.
For example, if I have 9 elements in it.
FooA, FooA, FooB, FooD, FooC, FooC, FooA, FooB, FooA
Order by type sequently will be.
FooA, FooB, FooC, FooD, FooA, FooB, FooC, FooA, FooA
I'm trying that the function can be ordered at the order you specify, at this case, IE, it was:
new[] { typeof(FooA), typeof(FooB), typeof(FooC), typeof(FooD) }
I was trying to create this extension, but I don't get anything. Can you help a little bit? I'm guessing that I can accomplish it with LINQ.