user278618
user278618

Reputation: 20252

unknown type or namespace linq of system.xml

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

Answers (1)

BrokenGlass
BrokenGlass

Reputation: 160922

The namespace you need should be System.Xml.Linq so add a

using System.Xml.Linq;

Upvotes: 2

Related Questions