13
Làm cách nào để thêm một chuỗi vào một chuỗi []? Không có chức năng .Add
private string[] ColeccionDeCortes(string Path) { DirectoryInfo X = new DirectoryInfo(Path); FileInfo[] listaDeArchivos = X.GetFiles(); string[] Coleccion; foreach (FileInfo FI in listaDeArchivos) { //Add the FI.Name to the Coleccion[] array, } return Coleccion; } Tôi muốn chuyển đổi FI.Namechuỗi thành chuỗi và sau đó thêm nó vào mảng của tôi. Tôi …
222
c#
arrays
long-filenames