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...
It's as easy as:
LocationTools.GetLocationFromIP(strIP, strCity, strRegion, strCountry, fLat, fLong)
Just call the Class, and straight from that the method. Static means that you do not need an instance of the class to call the method.