Iterate Object List

I think there is no task like that. I write a custom task. is it possible to write a generic task like this?

public class Iterator<T> : Decorator
{
}
 
There is not a built in task which iterates a list. You are not able to write a generic task as when you create it within the editor it doesn't know what type of class to create.
 
The editor doesn't know what type of generic class you want to create so you cannot create a generic task.
 
Back
Top