La liste de tableaux ci-dessous peut-elle être directement initialisée sans avoir besoin d'un tableau de chaînes FileExt?
private static string[] aFileExt =
{"css", "gif", "htm", "html", "txt", "xml" };
private System.Collections.ArrayList alFileTypes =
new System.Collections.ArrayList(aFileExt);
La ligne ci-dessous est l'objectif, mais mon compilateur .Net ne l'aime pas:
private static System.Collections.ArrayList alFileTypes =
new System.Collections.ArrayList({"css","gif","htm","html","txt","xml"});
J'utilise le .net Micro Framework et n'ai donc pas accès aux types génériques.