我正在为 Windows 8 中的 XMPP 开发一个类库(Windows 应用商店应用程序),我遇到了这些错误,我提供了所有必需的参考,例如,
System.Net
System.Threading
等等,但仍然出现这些错误,
错误 15 找不到类型或命名空间名称“Formatting”(是否缺少 using 指令或程序集引用?)
错误 16 找不到类型或命名空间名称“Formatting”(是否缺少 using 指令或程序集引用?)
错误 17 找不到类型或命名空间名称“格式化”(您是否缺少 using 指令或程序集引用?)
错误 7 命名空间“系统”中不存在类型或命名空间名称“ICloneable” (您是否缺少程序集引用?)
错误 9 找不到类型或命名空间名称“IPAddress”(您是否缺少 using 指令或程序集引用?)
错误 12 找不到类型或命名空间名称“IPAddress”(是否缺少 using 指令或程序集引用?)
错误 13 找不到类型或命名空间名称“IPEndPoint”(是否缺少 using 指令或程序集引用?)
错误 6 找不到类型或命名空间名称“ListDictionary”(是否缺少 using 指令或程序集引用?)
错误 14 找不到类型或命名空间名称“ListDictionary”(是否缺少using 指令或程序集引用?)
错误 2 命名空间“System.Net”中不存在类型或命名空间名称“Sockets”(您是否缺少程序集引用?)
错误 3 名称空间“System.Net”中不存在类型或名称空间名称“Sockets”(您是否缺少程序集引用?)
错误 4 名称空间“System.Net”中不存在类型或名称空间名称“Sockets” '(是否缺少程序集引用?)
错误 5 找不到类型或命名空间名称“Stack”(是否缺少 using 指令或程序集引用?)
错误 1 类型或命名空间名称“Timer”无法找到找到(您是否缺少 using 指令或程序集引用?)
错误 8 找不到类型或命名空间名称“Timer”(您是否缺少 using 指令或程序集引用?)
错误 10 找不到类型或命名空间名称“Timer”(是否缺少 using 指令或程序集引用?)
错误 18 找不到类型或命名空间名称“XmlTextWriter”(是否缺少 using 指令或程序集参考?)
错误 11 使用泛型类型“System.Collections.Generic.Queue”需要 1 个类型参数
请任何人帮助我或建议我解决方案。. .
/// <summary>
/// returns the Xml, difference to the Xml property is that you can set formatting properties
/// </summary>
/// <param name="format"></param>
/// <param name="indent"></param>
/// <returns></returns>
public string ToString(Formatting format, int indent)
{
return BuildXml(this, format, indent, ' ');
}
#region << Xml Serializer Functions >>
private string BuildXml(Node e, Formatting format, int indent, char indentchar)
{
if ( e != null )
{
System.IO.StringWriter tw = new StringWriter();
XmlTextWriter w = new XmlTextWriter(tw);
w.Formatting = format;
w.Indentation = indent;
w.IndentChar = indentchar;
WriteTree(this, w, null);
return tw.ToString();
}
else
{
return "";
}
}
“格式化”错误来自此代码块,即使我已将参考作为 system.xml
没有解决的选项,