mscorlib.dll始终由构建系统自动引用

时间:2013-05-16 10:07:13

标签: .net-4.0

我尝试在.NetFrameWork 4.0中创建一个类库。 我在类中使用了下面的代码,并尝试从.NetFrameWork 4.0添加mscorlib.dll,因为System.Type驻留在mscorlib.dll上。

string str3 = (string)type.Format(str2, obj1, obj.properties.email.value);

但是在添加引用时,发生了一个错误enter image description here

任何人都可以帮助我

1 个答案:

答案 0 :(得分:2)

您不需要添加对mscorlib.dll的引用,因为它是由构建系统自动引用的。 对于使用“Type”类,您只需使用“using System”命名空间。

检查一下:

enter image description here