How do I call a static method? I want to call this from a class I have created, I want to get the location from IP. I\'ve declared it but what I need to do is call the method...
You need to do two things:
First, import the library where the static class is: import blabla;
Then, call your static method doing something liked this: LocationTools.GetLocationFromIP(address, city...);
It should work.