D
David Sworder
Hi,
Can anyone recommend a 3rd party .NET component that would allow me to
determine the approximate number of miles between two zip codes?
At runtime, I will know the user's zip code. I will also have access to
an array of MyObjects where MyObject is defined as:
internal class MyObject{
...
...
public String ZipCode;
}
I want to loop through the array of MyObjects and make note of the
objects whose 'ZipCode' field is within 50 miles of the user's zip code.
Obviously, this isn't an exact science since I won't know the user's exact
address within his zip code. I'm just looking for approximations here.
David
Can anyone recommend a 3rd party .NET component that would allow me to
determine the approximate number of miles between two zip codes?
At runtime, I will know the user's zip code. I will also have access to
an array of MyObjects where MyObject is defined as:
internal class MyObject{
...
...
public String ZipCode;
}
I want to loop through the array of MyObjects and make note of the
objects whose 'ZipCode' field is within 50 miles of the user's zip code.
Obviously, this isn't an exact science since I won't know the user's exact
address within his zip code. I'm just looking for approximations here.
David