我无法从项目中找到装配体。我有两个控制台应用程序,一个我从另一个那里引用。但后来我不能做出使用语句,因为它找不到项目......
编辑:我在 Lab1PersonId 中的程序类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lab1PersonId
{
class Program
{
static void Main(string[] args)
{
}
}
}
编辑:
using Lab1PersonId;
namespace Test
{
public class Program
{
static void Main(string[] args)
{
Lab1PersonId lab = new Lab1PersonId(); ***
}
}
}
第 *** 行出错:需要类型名称,但找到命名空间