I think the first element posted by John Rudy is what you are looking for - add them to your project properties.
However, VB.Net also works differently than C #, since in VB this means that importing a namespace requires a different matter than in C #. When you import a namespace into VB, it also provides child namespaces in scope.
Take, for example, the namespace Systemthat is imported by default. Since the System namespace is imported, you do not need to first enter System.to refer to a child namespace, such IOas in C #. So, right out of the box, you can say something like this in VB:
If IO.File.Exists(MyFile) Then ....
It is simply not possible in C # right now. You also need to import System.IOand then just say File.Exists()or specify the System: namespace as well System.IO.File.Exists().
, VB , , . , , VB, #.