Scope of static class methods

When calling a static class method, what scope does it have- something global or just the scope of it's calling function?
the scope that any variable has, because you cant call it when its out of scope
Last edited on
The scope of a static class method is the class definition itself (and definitions of its derived classes) including its other member definitions that can be placed outside the class definition.
Last edited on
Topic archived. No new replies allowed.