convert string array to string October 14, 2022 by Tarik string[] test = new string[2]; test[0] = "Hello "; test[1] = "World!"; string.Join("", test);