T
Ten
i have 5 non-static classes
Class A, B, C, D, and E
Class A creates an instance of class B. what would be a way for classes C D
E to pass data into that instance of class B.
Class A
{
B b = new B();
}
Tem
Class A, B, C, D, and E
Class A creates an instance of class B. what would be a way for classes C D
E to pass data into that instance of class B.
Class A
{
B b = new B();
}
Tem