添加对ASP.NET项目的引用

时间:2014-01-24 19:17:18

标签: c# asp.net .net

我想在我的ASP.NET MVC项目中使用以下系统引用:System.Device.Location.CivicAddress(),但是当我将它添加到 using 部分时没有任何反应。

这是我的代码段:

using System;
**using System.Device.Location;**
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;

namespace Frappuccino.Models
{
    public class Client
    {
        [Key]
        public Int16 ID { get; set; }

        [Required]
        public String Name { get; set; }

        [Required]
        **public CivicAddress Address { get; set; }**        
    }
 }   

有人有任何想法吗?

1 个答案:

答案 0 :(得分:1)

如果使用Visual Studio:

  • 在您的项目中,您将拥有一个引用“文件夹”。右键单击它,然后单击“添加引用..”。
  • 或者,右键单击您的项目,转到添加,然后单击“引用..”。

这会将程序集添加到您的项目中。

Source