stackoverflow 보다 이런 방법도 있었구나~ 해서 올려봅니다.

// 타입 배열을 이용한 초기화
private static ArrayList alFileTypes = new ArrayList(new string[] {"css","gif","htm","html","txt","xml"});

// 암묵적 타입(?) 배열을 이용한 초기화
private static ArrayList alFileTypes = new ArrayList(new[] {"css","gif","htm","html","txt","xml"});

// 일반적인 묶음(컬렉션) 초기화
private static ArrayList alFileTypes = new ArrayList{"css","gif","htm","html","txt","xml"};

// 작성자가 만든 헬퍼 클래스를 이용한 초기화
public static ArrayList CreateList(params object[] items)
{
    return new ArrayList(items);
}

static ArrayList alFileTypes = CreateList("css","gif","htm","html","txt","xml");

출처 : http://stackoverflow.com/questions/1723112/initializing-arraylist-with-constant-literal

+ Recent posts