13
Как добавить строку в массив string []? Там нет. Добавить функцию
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; } Я хотел бы преобразовать в FI.Nameстроку, а затем добавить его в мой массив. Как я могу это …
222
c#
arrays
long-filenames