com.calitha.commons.IntegerList.Synchronized C# (CSharp) 메소드

Synchronized() 공개 정적인 메소드

Returns an IntegerList wrapper that is synchronized.
public static Synchronized ( IntegerList list ) : IntegerList
list IntegerList The list to synchronize.
리턴 IntegerList
		public static IntegerList Synchronized(IntegerList list)
		{
			IntegerList result = new IntegerList();
			result.list = ArrayList.Synchronized(list.list);
			return result;
		}