Class Template<T1, T2, T3, T4, T5, T6, T7, T8>
Represents a Template with eight generic values.
Inheritance
Inherited Members
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class Template<T1, T2, T3, T4, T5, T6, T7, T8> : Template<T1, T2, T3, T4, T5, T6, T7>
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of this Template. |
T2 | The type of the second parameter of this Template. |
T3 | The type of the third parameter of this Template. |
T4 | The type of the fourth parameter of this Template. |
T5 | The type of the fifth parameter of this Template. |
T6 | The type of the sixth parameter of this Template. |
T7 | The type of the seventh parameter of this Template. |
T8 | The type of the eighth parameter of this Template. |
Remarks
Inspired by Tuple objects, Template, was chosen because of the naming conflict in newer version of the .NET Framework. The name, Template, was inspired by the Variadic Template in C++.
Constructors
| Improve this DocTemplate(T1, T2, T3, T4, T5, T6, T7, T8)
Initializes a new instance of the Template<T1, T2, T3, T4, T5, T6, T7, T8> class.
Declaration
public Template(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8)
Parameters
Type | Name | Description |
---|---|---|
T1 | arg1 | The value of the first parameter of this Template. |
T2 | arg2 | The value of the second parameter of this Template. |
T3 | arg3 | The value of the third parameter of this Template. |
T4 | arg4 | The value of the fourth parameter of this Template. |
T5 | arg5 | The value of the fifth parameter of this Template. |
T6 | arg6 | The value of the sixth parameter of this Template. |
T7 | arg7 | The value of the seventh parameter of this Template. |
T8 | arg8 | The value of the eighth parameter of this Template. |
Properties
| Improve this DocArg8
Gets or sets the eighth parameter of this instance.
Declaration
public T8 Arg8 { get; set; }
Property Value
Type | Description |
---|---|
T8 | The eighth parameter of this instance. |
Methods
| Improve this DocClone()
Creates a shallow copy of the current Template object.
Declaration
public override Template Clone()
Returns
Type | Description |
---|---|
Template | A new Template that is a copy of this instance. |
Overrides
Remarks
When thread safety is required this is the method to invoke.
ToArray()
Returns an array of objects that represent the arguments passed to this instance.
Declaration
public override object[] ToArray()
Returns
Type | Description |
---|---|
System.Object[] | An array of objects that represent the arguments passed to this instance. Returns an empty array if the current instance was constructed with no generic arguments. |