Is it possible to change the order of Type Parameters?
Hello
I have the following generic type:
public abstract class BusinessEntityBase<TDao, TDto, TBe>
Is it possible to change the order of the types and automatically have the
code updated at all locations where this generic type is being used? What I
basically need is to change the order of the type parameters to this:
public abstract class BusinessEntityBase<TBe, TDto, TDao>
Cheers
Gabriel Lozano-Moran
Please sign in to leave a comment.