如何将不同程序类中包含的代码调用到MVC5 APPLICATION

时间:2016-05-03 08:57:39

标签: asp.net-mvc-5

我试图在我的MVC5应用程序中调用来自不同应用程序的类。 我添加了对我的应用程序的引用。但是,我想从该项目调用下面提到的代码。怎么会这样帮助我。

IUser user = PimsLib.Config.Users.Add
(  userName
,  userPass
,  userAccount
,  encoding
,  new MappingId(1)
)
if(user == null)
   throw new Exception("Failed to add user");

1 个答案:

答案 0 :(得分:0)

请按照以下步骤操作。它会有所帮助。

a)单击项目中的“参考”节点,右键单击弹出菜单中的“添加参考”

b)将出现如图像中指定的对话窗口,在窗口中打开您的DLL文件

c)现在按OK。如果DLL是有效的DLL,它将被添加到项目中。

enter image description here