13
Bir dize [] dizisine dize nasıl eklenir? Ekleme işlevi yok
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.NameBir dizeye dönüştürmek ve sonra benim diziye eklemek istiyorum. Bunu nasıl yapabilirim?
223
c#
arrays
long-filenames