Comment puis-je convertir ArrayList
en string[]
en C #?
string[] myArray = (string[])myarrayList.ToArray(typeof(string));
Un simple Google ou une recherche sur MSDN l'aurait fait. Ici:
ArrayList myAL = new ArrayList();
// Add stuff to the ArrayList.
String[] myArr = (String[]) myAL.ToArray( typeof( string ) );
using System.Linq;
public static string[] Convert(this ArrayList items)
{
return items == null
? null
: items.Cast<object>()
.Select(x => x == null ? null : x.ToString())
.ToArray();
}
utilisez .ToArray (Type)
string[] stringArray = (string[])arrayList.ToArray(typeof(string));
Essayez de faire cela avec la méthode ToArray()
.
ArrayList a= new ArrayList(); //your ArrayList object
var array=(String[])a.ToArray(typeof(string)); // your array!!!
Vous pouvez utiliser la méthode CopyTo de l'objet ArrayList.
Disons que nous avons un arraylist, qui a le type de chaîne comme éléments.
strArrayList.CopyTo(strArray)
Une autre façon est comme suit.
System.Collections.ArrayList al = new System.Collections.ArrayList();
al.Add("1");
al.Add("2");
al.Add("3");
string[] asArr = new string[al.Count];
al.CopyTo(asArr);