คำถามติดแท็ก long-filenames

13
วิธีการเพิ่มสตริงให้กับสตริง [] อาร์เรย์? ไม่มีฟังก์ชั่นเพิ่ม
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เป็นสตริงแล้วเพิ่มลงในอาร์เรย์ของฉัน ฉันจะทำสิ่งนี้ได้อย่างไร
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.