关于WCF服务,这里有点生疏。
我有一个名为cSecurity.cs的自定义类,它可以执行一些自定义函数。
我想在我的服务中使用这个自定义类:
这是App.svc.cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
namespace AppServices
{
public class App : IApp
{
public cSecurity _csec;
public string GetItems(int agentID, string agentName)
{
// Need to use some functions from the cSecurity class here???
return _csec.getItems();
}
}
}
这是cSecurity.cs类:
using System.Collections;
using System.Configuration;
using System.Net;
namespace AppServices
{
public class cSecurity
{
// Some functions defined here....
public string getItems(){
return string.Empty;
}
}
}
但我收到了错误:
public cSecurity _csec;
“无法找到类型或命名空间名称'cSecurity'。”
这看起来非常微不足道,但我似乎迷失在这里。
欣赏任何见解。感谢。
答案 0 :(得分:0)
出于某种原因,解决方法是让我关闭并重新启动VS.不确定导致该类没有被VS引用的原因。