2011-10-27 77 views
0

首先這裏是我的文件結構在C#中從外部項目文件夾訪問類

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

2010年Visiual工作室,我在索賠項目,我想從哪個是Common層訪問類與索賠和清理的水平相同。我在Claims項目中使用下面的命名空間。但是它說Common不存在,並且Common文件夾中的所有函數也不存在。

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

我該如何解決這個問題?我在命名空間中遇到錯誤,還是必須向我的程序集添加某些內容?

+0

您是否在項目引用中添加了對程序集的引用? –

回答

相關問題