标签: c# .net oop alias
我想根据条件制作别名类型。就像这样:
if(true == something) using MyAlias = MyType1; else using MyAlias = MyType2; MyAlias boom = ...
在C#中可以吗?