String.Split()

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there an inverse of this theod available, such that I can take a String[]
s and return one string delimitied by my specified character(s)?

I know it is easy enough to write...I just don't want to.
 
Tom said:
Is there an inverse of this theod available, such that I can take a
String[] s and return one string delimitied by my specified
character(s)?

I know it is easy enough to write...I just don't want to.

String.Join

Andrew
 
Back
Top