从C#中的外部项目文件夹访问类

时间:2011-10-27 19:16:16

标签: visual-studio-2010 c#-4.0 assembly namespaces using

首先,这是我的文件结构

Services.Abstraction.Common
Services.Abstraction.Claims
Services.Abstraction.Clearance

在Visiual Studio 2010中,我处于Claims项目中,我希望从Common层访问类,它与Claim和Clearance处于同一级别。我在Claims项目中使用下面的命名空间。但是它说Common不存在,Common文件夹中的所有函数也不存在。

using System.Collections.Generic;
using System;
using System.Xml;
using System.Xml.Serialization;
using Services.Abstraction.Common;

我该如何解决这个问题?我在命名空间中是否有错误,或者我是否需要在程序集中添加内容?

1 个答案:

答案 0 :(得分:0)

http://msdn.microsoft.com/en-us/library/7314433t(v=vs.80).aspx

这里没有太多要说的...这个链接解释了如何在visual studio中添加引用,可能你的问题是你缺少对其他dll或项目的引用,我错了吗?