May 7, 2003 #1 I I_R_Lee Well-known member Joined Jul 18, 2002 Messages 50 Location Sydney, Australia How do you combine strings in MC++? Also, is there a For Each...Next equivalent in MC++ and J#?
May 7, 2003 #2 V vincentnl Active member Joined Mar 29, 2003 Messages 40 Location Netherlands Combine ? you mean concat ? String::Concat(S"Hello ",str);
May 7, 2003 #3 I I_R_Lee Well-known member Joined Jul 18, 2002 Messages 50 Location Sydney, Australia No, I mean the way you do in VB or C#, s = "123" + "456". Ive tried that in MC++, but it wont work.
May 7, 2003 #4 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 vincentnls solution will work fine for that.