Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的项目制作自己的 C# mscorlib。但是有没有办法改变基类命名空间。现在我需要:
namespace System { public class Object { } }
但我想要: namespace Framework { public class Object { } }
namespace Framework { public class Object { } }
有没有可能?
不,你不能那样做。C# 语言规范明确指出类层次结构的根是System.Object.
System.Object
构建替代品mscorlib是一项非常艰巨的任务 - 你真的确定要这样做吗?
mscorlib