How do I call a static method of another class
You only need to use the scope resolution operator ::
to qualify the method with the name of the class that exposes it:
CString appPath = CAppPath::GetAppPath();
You only need to use the scope resolution operator ::
to qualify the method with the name of the class that exposes it:
CString appPath = CAppPath::GetAppPath();