请问我哪里写的不对?
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
//声明“职位”数组,初始化为:"经理","项目主管","技术总监","财务主管"
string[] job =new job[]{"经理","项目主管","技术总监","财务主管"}
for (int i = 0; i < job.Length; i++)
{
Console.WriteLine(job[i]);//打印职位
}
}
}
}