在我的web服务不能使用公共类(Can't use public class in my w

2019-07-21 00:46发布

为什么我不能使用下列公共类:

namespace OrganizerUI.App_code
{
    public class Employee
    {

        private string text;

        public string Text
        {
            get { return text; }
            set { text = value; }
        }

    }
}

在我的web service

Answer 1:

常(总是?),被添加到Visual Studio App_Code目录中的代码文件不会被默认设置为编译,即使它们的.Net代码。 它们被设置为“内容”,这意味着它们只包含在输出。 如果用鼠标右键单击该文件,并选择“属性”就可以看到/更改“编译”,而不是“内容”。



文章来源: Can't use public class in my web service