Is there a way to do an extern alias
inside a razor (MVC3) view?
I have two versions of the same assembly (i.e. 1.0 and 2.0) with a type that has the same name and namespace and I need a way to specify the newer one in the razor view.
I've tried:
@extern
and:
@{ extern alias MyAlias; }
But neither of those worked.