com.calitha.commons.IntegerList.Synchronized C# (CSharp) Method

Synchronized() public static method

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