Hi
I am trying to implement the LocationSearchParameter in C#.NET, I found some php code
and roughly converted it to get
`Location unitedkingdom = new Location();
unitedkingdom.id = 2826; // UK
Location[] loc = { unitedkingdom } ;
LocationSearchParameter mylocationParam = new LocationSearchParameter();
mylocationParam.locations = loc ;
searchParameters.Add(mylocationParam);`
I cant say if its working , and it doees not look correct to me.
There is not code sample for this in the documentation.
Cheers
Ola