Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Added MSDN link
Source Link
Xavier Poinas
  • 19.8k
  • 14
  • 68
  • 98

FYI, the .NET 4.0 version of string.Join()string.Join() has some extra overloadsextra overloads, that work with IEnumerable instead of just arrays, including one that can deal with any type T:

public static string Join(string separator, IEnumerable<string> values) public static string Join<T>(string separator, IEnumerable<T> values) 

FYI, the .NET 4.0 version of string.Join() has some extra overloads:

public static string Join<T>(string separator, IEnumerable<T> values) 

FYI, the .NET 4.0 version of string.Join() has some extra overloads, that work with IEnumerable instead of just arrays, including one that can deal with any type T:

public static string Join(string separator, IEnumerable<string> values) public static string Join<T>(string separator, IEnumerable<T> values) 
Added MSDN link
Source Link
Xavier Poinas
  • 19.8k
  • 14
  • 68
  • 98

FYI, the .NET 4.0 version of string.Join() has some extra overloadsextra overloads:

public static string Join<T>(string separator, IEnumerable<T> values) 

FYI, the .NET 4.0 version of string.Join() has some extra overloads:

public static string Join<T>(string separator, IEnumerable<T> values) 

FYI, the .NET 4.0 version of string.Join() has some extra overloads:

public static string Join<T>(string separator, IEnumerable<T> values) 
added 19 characters in body
Source Link
Xavier Poinas
  • 19.8k
  • 14
  • 68
  • 98

FYI, the .NET 4.0 version of string.Join() has some extra overloads:

public static string.Join Join<T>(string separator, IEnumerable<T> values) 

FYI, the .NET 4.0 version of string.Join() has some extra overloads:

string.Join(string separator, IEnumerable<T> values) 

FYI, the .NET 4.0 version of string.Join() has some extra overloads:

public static string Join<T>(string separator, IEnumerable<T> values) 
Source Link
Xavier Poinas
  • 19.8k
  • 14
  • 68
  • 98
Loading