The statement "Microsoft no longer supports Visual Basic" could mean several things, since there are several versions of Visual Basic - VB 1 though to 6, VBA and VB.NET.
The statement "Microsoft no longer supports Visual Basic.NET" would be big news if it was true, but it isn't. (I checked on google). Support for VB6 has ended, but VB.Net is still very much alive and gaining new features.
VB.Net compiles to MSIL bytecode that depends on some of the the .Net libraries, depending on which .net framework classes you use. Some of those libraries are not written in pure .Net. Net, or are just wrappers around the Windows API. This is needed, since those features that are not built into .net (e.g threading) have to be exposed to it in a controlled fashion.
Exactly the same is true of C#. The runtime doesn't really care which language generated the MSIL that it executes.
