I'm trying to add reference to XElement
in my C# Silverlight 4 project, and I get an error
unknown type or 开发者_如何学运维namespace linq of system.xml
Do you know what can effect this situation?
The namespace you need should be System.Xml.Linq
so add a
using System.Xml.Linq;
精彩评论