Hello,

I added the System.XML.dll reference to my project.
Imports System.XML and Imports System.Xml.XmlDocument is also added to my code

However when i type:
XmlDocument objXMLDoc = new XmlDocument();

I see that:
XmlDocument, objXMLDoc and ';' got underlined in blue

When i compile the code in Visual Studio i got the following error:
'XmlDocument' is a type and cannot be used as an expression"

What do i do wrong?

Greetz

Cheyloe