理论问题:这样做有什么区别:
using System; ... var foo = new String("foo");
还有这个:
var foo = new System.String("foo");
DLL加载?性能差异?
主要是,我怀疑在这种情况下最好的代码实践是什么?
.net c#
.net ×1
c# ×1