I have two class:

public Class A
....
end Class

public Class B
private MyA as new A ''not sure how to code this line
.......
end Class

I want Class A be a member of Class B, but I like Class B remains its status/value after class A is out of scope. To put it the other way, I would like several instances of Class B to share one instance of class A. Is it possible?

Thanks