13
Como adicionar uma string a uma matriz de string []? Não há função .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; } Gostaria de converter o FI.Nameem uma string e adicioná-lo à minha matriz. Como posso fazer isso?
222
c#
arrays
long-filenames