I have a class, lets say CAppPath which has a static method:
CAppPath
public: static CString GetAppPath();
and in CAppPath.cp
CAppPath.cp
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();