Is it a good idea to try and return a strongly typed List of custom objects from a webservice?
Any pitfalls I should know about?
[WebMethod]
public List<CustomSerializableObject> GetList()
{
List<CustomSerializableObject> listToReturn = new List<CustomSerializableObject>();
listToReturn.Add(new CustomSerializableObject());
listToReturn.Add(new CustomSerializableObject());
listToReturn.Add(new CustomSerializableObject());
return listToReturn;
}