CountCollection<T> Constructor
Initializes a new instance of the CountCollection<T> class.
Namespace: Microsoft.Activities
Assembly: Microsoft.Activities (in Microsoft.Activities.dll)
Overload List
Name | Description | |
---|---|---|
CountCollection<T>() | Initializes a new instance of the CountCollection<T> class. |
|
CountCollection<T>(InArgument<ICollection<T>>) | Initializes a new instance of the CountCollection<T> class. |
See Also
CountCollection<T> Class
Microsoft.Activities Namespace
Return to top
CountCollection<T> Constructor ()
Initializes a new instance of the CountCollection<T> class.
Syntax
public CountCollection()
public:
CountCollection()
new : unit -> CountCollection
Public Sub New
Return to top
CountCollection<T> Constructor (InArgument<ICollection<T>>)
Initializes a new instance of the CountCollection<T> class.
Syntax
public CountCollection(
InArgument<ICollection<T>> collection
)
public:
CountCollection(
InArgument<ICollection<T>^>^ collection
)
new :
collection:InArgument<ICollection<'T>> -> CountCollection
Public Sub New (
collection As InArgument(Of ICollection(Of T))
)
Parameters
collection
Type: System.Activities.InArgument<ICollection<T>>The target collection.
Return to top