Class ParamsWrappers<T>
Represents a wrapper for an array of parameters of type T.
Inherited Members
Namespace: Innovt.Core.Collections
Assembly: Innovt.Core.dll
Syntax
public class ParamsWrappers<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of parameters in the array. |
Remarks
This class allows you to wrap an array of parameters and provide a convenient way to work with them. It is commonly used when you need to pass a variable number of parameters to a method or function.
Constructors
| Edit this page View SourceParamsWrappers(params T[])
Initializes a new instance of the ParamsWrappers<T> class with the specified parameters.
Declaration
public ParamsWrappers(params T[] parameters)
Parameters
| Type | Name | Description |
|---|---|---|
| T[] | parameters | The array of parameters to wrap. |
Properties
| Edit this page View SourceParameters
Gets or sets the array of parameters wrapped by this instance.
Declaration
public T[] Parameters { get; set; }
Property Value
| Type | Description |
|---|---|
| T[] |