public ComArray CreateArray( string arrayTypeString );
Overloads:loArray = loBridge.CreateArray("YourNamespace.YourArrayItemType") *** Create the item to add loItem = loBridge.CreateInstance("YourNamespace.YourArrayItemType") loItem.Property = "asdasd" ... *** Add the item to the array loArray.AddItem(loItem) *** Call the service with the array loProxy.CallServiceMethodWithArray(loArray)