I have simple remoting API that has method similar to this:
bool FillMyList(List<string> ListToFill)
{
ListToFill.Add("something");
ListToFill.Add("more stuff");
}
But, when I call it through a proxy object, upon return, ListToFill stays as it was (in my case, empty).
What now? I must point out that rest of my methods are called fine - they pass parameters in one direction and have return value for the other.