Skip to content

Instantly share code, notes, and snippets.

@arashrasoulzadeh
Created July 6, 2016 22:30
Show Gist options
  • Save arashrasoulzadeh/6fae7545ac7703f8c85ad058a2c51ff5 to your computer and use it in GitHub Desktop.
Save arashrasoulzadeh/6fae7545ac7703f8c85ad058a2c51ff5 to your computer and use it in GitHub Desktop.
///<summary>
///<para>StringBuilder with array</para>
///</summary>
public static String BuildString(System.Object[] array)
{
StringBuilder sb = new StringBuilder();
for (int i = 0; i < array.Length; i++)
{
sb.Append(array[i]);
}
return sb.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment