For example, in a C# file:
using library;
class Program
{
static void Main (string[] args)
{
LibraryExample l = new LibraryExample();
l.doStuff();
// De-import it
}
}
Would this be possible (not only in C#)? If yes, would you gain performance?
(I found a similar question and in Python you can del
stuff not longer needed but this only makes you lose access about it and doesn't really drop the package)