It seems that Jan Tielens has updated the TypeFinder macro again. It's got a few nice extras in there.
There's one little addition I would add, once you have the macro installed browse in the AddDirective method down to where it has this line:
While text.Text.StartsWith("/*") Or text.Text.StartsWith(" *") Or text.Text.StartsWith("//") Or text.Text.StartsWith("'")
And add this to the end of the line:
Or text.Text.StartsWith("Option")
This fixes a small issue for VB.NET users that have an Option Explicit On or Option Strict On.
Happy coding!