Namespace to get the string array
What message type should i assign to a message which contains a data type of string array in biztalk server
when i used the message type as System.string for my message Message_1 and assigning a value
Message_1=Message_2.Split(',');
iam getting the error which is as follows cannot implicitly convert type 'System.String[]'to 'System.String'
Can anyone suggest me what message type i have to use for Message_1
and where can i get it.that is in which namespace can i get it .
if i use the statement
string[] Variable_1 = MatchRuleFields.Split(',');
where Variable_1 is a string type it is giving an error which is as follows identifier 'string' does not exist in MatchRulesOrches'; are you missing an assembly reference? can someone suggest some solution for this.
|