我只有 1 个命名空间和这 2 个不同的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
namespace blabla
{
[...]
}
和
namespace blabla
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
[...]
}
我在这里根本看不到任何区别,但真的是这样吗?我的意思是关于性能或其他