如何为类型创建ana别名

时间:2015-05-08 12:47:45

标签: c# .net oop alias

我想根据条件制作别名类型。就像这样:

if(true == something)
    using MyAlias = MyType1;
else
    using MyAlias = MyType2;

MyAlias boom = ...

在C#中可以吗?

0 个答案:

没有答案