获取命名空间未找到错误

时间:2014-12-17 16:34:57

标签: c# asp.net-mvc helper

我在应用程序中编写了一个XMLHelper作为自己的项目。添加' XMLHelper'命名空间到web.config我收到以下错误:

The type or namespace name 'XMLHelper' could not be found (are you missing a using directive or an assembly reference?)

在web.config中的这一行:

<add namespace="XMLHelper" />

以下是XMLUtil类中的使用:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.XPath;
using System.IO;
using System.Web.Mvc;
using System.Web;
using System.Xml.Xsl;

namespace XMLHelper
{
    public static class XMLUtil
    {
    }
}

我在这里遗漏了什么吗?

0 个答案:

没有答案