Reputation: 20252
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?
Upvotes: 0
Views: 369
Reputation: 160922
The namespace you need should be System.Xml.Linq
so add a
using System.Xml.Linq;
Upvotes: 2