提问人:Tom 提问时间:8/19/2022 更新时间:8/19/2022 访问量:44
为什么 using 指令不能在 c# 中递归使用?[已结束]
Why can the using directive not be used recursively in c#? [closed]
问:
为什么 using 指令不能在 c# 中以递归方式使用?
using MyKey = System.String;
using MyValue = System.Int32;
using AllowedPair = System.Collections.Generic.KeyValuePair<System.String, System.Int32>;
using NotAllowedPair = System.Collections.Generic.KeyValuePair<MyKey, MyValue>; //CS0246
我觉得想要以这种方式建立使用语句是合理的,所以我很好奇为什么我不被允许这样做。
答: 暂无答案
评论