使用C#/ Mono中的以下代码,
using System.Xml.Linq;
我收到了这个错误.
error CS0234: The type or namespace name `Linq' does not exist in the namespace `System.Xml'. Are you missing an assembly reference?
使用单声道System.Xml.Linq需要什么程序集参考?
dmcs /r:???? main.cs
那将是:
原文链接:https://www.f2er.com/xml/292624.htmldmcs -r:System.Xml.Linq.dll main.cs