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

Remove() public method

Removes the first occurrence of a specific value from the list.
public Remove ( int value ) : void
value int The value to remove from the list.
return void
		public void Remove(int value)
		{
			for (int i=0; i < list.Count; i++)
			{
				if (this[i] == value)
				{
					list.RemoveAt(i);
					return;
				}
			}
		}