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;
前もって感謝します!