Cannot find method although defined and used?
I'm currently creating a WPF project and have this static class:
And I use it in my ViewModel like this:
But I get the error:
Cannot resolve symbol 'CheckConfigFile'
It should find it tho cuz my VM has a dependency on it. Does anyone see the error?
2 Replies
i think it's because you have class name == namespace
(AppConfigHandler)
I changed the namespace name, now it works. Ty a lot!!