vote up 3 vote down star

How can I get C# to distinguish between ambiguous class types without having to specify the full 'HtmlAgilityPack.HtmlDocument' name every time (it is ambiguous compared to 'Systems.Windows.Forms.HtmlDocument'

Is there a way to make C# know that I am ALWAYS talking about one class or the other, and thus not have to specify each time I use it?

flag

2 Answers

vote up 15 vote down check

Use aliases:

using HapHtmlDocument = HtmlAgilityPack.HtmlDocument;
using WfHtmlDocument = System.Windows.Forms.HtmlDocument;
link|flag
Perfect! Thank you. – GordonG Jan 9 at 7:48
vote up 5 vote down

You can define an alias for one namespace, e.g:

using hap = HtmlAgilityPack;

and then use the alias instead of the full namespace:

hap.HtmlDocument doc = new hap.HtmlDocument;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.