初学者关于 C# 的问题。
在每个程序中,我必须包含几个命名空间,例如:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
为什么我必须包括:
using System.Collections.Generic;
using System.Linq;
using System.Text;
...因为它们包含在第一个中:
using System;
先感谢您!