using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace HelloWorld{class Program{static void Main(string[] args){Console.WriteLine("Hello World!");Console.ReadLine();}}}程序中HelloWorld是____
A. 命名空间
B. 类
C. 函数
D. 方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace HelloWorld{class Program{static void Main(string[] args){Console.WriteLine("Hello World!");Console.ReadLine();}}}程序中Program是____
A. 命名空间
B. 类
C. 函数
D. 方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace HelloWorld{class Program{static void Main(string[] args){Console.WriteLine("Hello World!");Console.ReadLine();}}}程序中Main是____
A. 命名空间
B. 类
C. 函数
D. 方法