I would like to replace some functionalities in several classes of an existing project. Is it possible to use the keyword Imports (or Using in c#) globally for a project?
Meaning for example i would like to specify "Imports System.Math" somewhere in my project settings and would expect this namespace to be available in all classes of my project afterwards.
If this is not possible, can i somewhere set default imports to automatically add "Imports System.Math" to any class which i create from now on?