When you create a class without explicitly inheriting from another class, your class implicitly inherits from System.Object.
自分で作ったクラスに何も継承させなかったときは、System.Objectを継承する
Public Class Class2
Inherits Class1
End Class
Public Class Class2 : Inherits Class1
End Class
Microsoft Intermediate Language and JIT Compilation
after an EXE or DLL containing MSIL is deployed on a target computer, it must still undergo a final round of just-in-time (JIT) compilation to transform it into machine-specific assembly instructions.