May 7, 2003 #1 I I_R_Lee Regular 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 Freshman 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 Regular Joined Jul 18, 2002 Messages 50 Location Sydney, Australia No, I mean the way you do in VB or C#, s = "123" + "456". I've tried that in MC++, but it won't work.
No, I mean the way you do in VB or C#, s = "123" + "456". I've tried that in MC++, but it won't work.
May 7, 2003 #4 D divil Ultimate Contributor Joined Nov 17, 2002 Messages 2,746 Location England vincentnl's solution will work fine for that.