大佬们,请问在C#语言中,Console是不是标识符?

Console.WriteLine("hello world");
using System;
这个加上了没有
完整程序

using System;
public class Program
{
static void Main()
{
Console.WriteLine("Hello_World");
}
}