Okay I have a class clsA in project A. I want to use static methods of clsA in project B.
I have tried to call these static functions by using the classname i.e clsA.function() in project B. But it's throwing error "The name clsA does not exists in the current context"
how do I solve this? Do I need to reference the class in project or something? If so then how to do it?