The case is quite simple - we had a discussion based on experiencing some linker issues, where colleagues of mine were stating, that we are unable to access the static methods and variables that are declared and defined within the class, from other modules (dlls, libs, exe).
I believe it is not the case and this rule applies just for static global methods (if you do not export them manually), that are not visible, as the linker tries to persevere the ODR.
Who is correct, are static class methods/vars really invisible or this applies just for global statics?