Bamboo.Prevalence.Collections.List.Collect C# (CSharp) Метод

Collect() публичный Метод

public Collect ( Predicate predicate ) : object[]
predicate Predicate
Результат object[]
		public object[] Collect(Predicate predicate)
		{
			return (object[])Collect(predicate, typeof(object));
		}

Same methods

List::Collect ( Predicate predicate, Type returnItemType ) : Array
List::Collect ( IList list, Predicate predicate ) : void