public static string Join(string separator, params obj[] array); object[] array = {"Hello", 12345, 786}; string s1 = string.Join(", ", array);