System.Runtime.Serialization.Formatters.Soap.SerStack.IncreaseCapacity C# (CSharp) Method

IncreaseCapacity() private method

private IncreaseCapacity ( ) : void
return void
		internal void IncreaseCapacity() {
			int size = objects.Length * 2;
			Object[] newItems = new Object[size];
			Array.Copy(objects, 0, newItems, 0, objects.Length);
			objects = newItems;
		}