How do I run a subprogram from a different class
Make sure that the method from another class is public.
If the target method is static - you can use OtherClass.OtherMethod(); to execute it.
If not - you have to create an object of this class, to have access to its methods:
OtherClass MyObj = new OtherClass();
MyObj.OtherMethod();
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C#