Skip to content

Instantly share code, notes, and snippets.

@hagbarddenstore
Created May 19, 2014 09:31
Show Gist options
  • Save hagbarddenstore/0a40fd5e08b1533f227a to your computer and use it in GitHub Desktop.
Save hagbarddenstore/0a40fd5e08b1533f227a to your computer and use it in GitHub Desktop.
interface IDependOn<T>
{
}
class A
{
}
class B
{
}
class C : IDependOn<A>, IDependOn<B>
{
}
class D
{
}
class E : IDependOn<D>, IDependOn<C>
{
}
// I want this ordered as: A, B, C, D, E
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment