13
स्ट्रिंग में तार जोड़ने के लिए कैसे [] सरणी? कोई .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; } मैं FI.Nameएक स्ट्रिंग में परिवर्तित करना चाहता हूं और फिर इसे मेरे सरणी में जोड़ दूंगा। मैं …
222
c#
arrays
long-filenames