Discuz.Entity.PhotoCommentInfoCollection.AddRange C# (CSharp) Method

AddRange() public method

Copies the elements of the specified PhotoCommentInfo array to the end of the collection.
public AddRange ( PhotoCommentInfo value ) : void
value PhotoCommentInfo An array of type PhotoCommentInfo containing the Components to add to the collection.
return void
		public void AddRange(PhotoCommentInfo[] value) 
		{
			for (int i = 0;	(i < value.Length); i = (i + 1)) 
			{
				this.Add(value[i]);
			}
		}
		

Same methods

PhotoCommentInfoCollection::AddRange ( PhotoCommentInfoCollection value ) : void