我已经看了很多关于这个问题的问题,大多数问题都是通过将应用程序目标从Net 4.0客户端更改为仅Net 4.0来解决的,我的问题已经是这样了,所以这不是问题所在。现在的情况是,我刚得到Json.Net,我创建了一个类Customer,用于它,如下所示:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace CC
{
public class Customer
{
private string location;
public string Location
{
get { return location; }
set { location = value; }
}
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
private int serviceTimeMin;
public int ServiceTimeMin
{
get { return serviceTimeMin; }
set { serviceTimeMin = value; }
}
public Customer()
{
}
}
}
然后在我的页面codebehind中,我有以下代码:
protected void Button_Click(object sender, EventArgs e)
{
Customer customer = new Customer();
customer.Location = txtCustomerAddress + ", " + txtCustomerCity + ", " + txtCustomerState + " " + txtCustomerZipcode;
customer.Name = txtCustomerFirstName + " " + txtCustomerLastName;
customer.ServiceTimeMin = 3;
string json = JsonConvert.SerializeObject(customer);
}
它在同一个命名空间中,已经检查过了,当我键入它时,它没有错误,只是当我构建以进行调试时,我得到了以下内容:
CS0246: The type or namespace name 'Customer' could not be found (are you missing a using directive or an assembly reference?)
并且源指向线:
Line 290: Customer customer = new Customer();
我错过了什么?
编辑:只是想澄清一下,这都在同一个命名空间和同一个项目(程序集)中。
代码绑定也在CC
命名空间中吗?否则,您需要将using CC
添加到文件的顶部。
我唯一能想到的是,如果Customer
没有正确构建。是否存在其他错误或警告?这可能是一个副作用错误。
您是否正在运行测试,是否启用了代码覆盖率?有时,在这种情况下,您的项目DLL将不会更新。