将System.Xml.Linq与mono命令行编译器一起使用

前端之家收集整理的这篇文章主要介绍了将System.Xml.Linq与mono命令行编译器一起使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用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
那将是:
dmcs -r:System.Xml.Linq.dll main.cs
原文链接:https://www.f2er.com/xml/292624.html

猜你在找的XML相关文章