unused

Unused namespace declaration appears after XSLT

Hello, After scouring the net for answers, coming up with "almost" solutions... I decided to reduce the problem to a very simple case. Consider the following XML snippet: <me:root xmlns:me="http://stackoverflow.com/xml" xmlns="http://www.w3.org/1999/xhtml"&gt; <me:element> <p>Some HTML code here.</p> </me:element> </...

Unused imports in .NET

The VB.Net IDE allows me to scan for unused references. But I also have a lot of unused imports in my application. Is there a way to scan for unused imports in all classes, or does having an unused import not hurt the performance of my application? ...