Try importing the namespace that contains the class, not the class itself.
So instead:
Imports my_app.my_class
do the following:
Imports my_app
VB.NET , , . , , my_app , my_app.
, , Page_Load, my_class :
Dim foo As New my_class
my_class.my_sub()
my_class, foo, .
, , my_sub a Shared , :
Public Shared Sub my_sub()
, my_class my_sub - my_sub:
my_class.my_sub()