I have an error "Cannot implicitly convert type "CorrespondingBall.MyCloudService.ArrayOfString' to 'System.Collections.Generic.List". Does anyone know how can I solved it? I have read up on Convert array of strings to List<string>, but I do not understand and implement it. My codes are below.
ServiceSoapClient client = new ServiceSoapClient();
List<string> objectiveList = new List<string>();
client.getObjectiveCompleted += new EventHandler<getObjectiveCompletedEventArgs>(getObjectiveCompletedHandler);
client.getObjectiveAsync();
I received the error for
private void getObjectiveCompletedHandler(object sender, getObjectiveCompletedEventArgs e)
{
objectiveList = e.Result;
}