Hi Martin,
I have CLR object of the following type
public partial class Response_Create_CustomerContact {
private string customerAccountD365Field;
private string sourceField;
private string customerNoNAVField;
private bool errorField;
private string errortextField;
/// <remarks/>
public string CustomerAccountD365 {
get {
return this.customerAccountD365Field;
}
set {
this.customerAccountD365Field = value;
}
}
/// <remarks/>
public string source {
get {
return this.sourceField;
}
set {
this.sourceField = value;
}
}
/// <remarks/>
public string CustomerNoNAV {
get {
return this.customerNoNAVField;
}
set {
this.customerNoNAVField = value;
}
}
/// <remarks/>
public bool Error {
get {
return this.errorField;
}
set {
this.errorField = value;
}
}
/// <remarks/>
public string Errortext {
get {
return this.errortextField;
}
set {
this.errortextField = value;
}
}
}
i'm getting array of type Response_Create_CustomerContact as a response
I'm not sure that how can i iterate in order to read the values in x++