Innovt Platform
Search Results for

    Show / Hide Table of Contents

    Class ParamsWrappers<T>

    Represents a wrapper for an array of parameters of type T.

    Inheritance
    object
    ParamsWrappers<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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 Source

    ParamsWrappers(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 Source

    Parameters

    Gets or sets the array of parameters wrapped by this instance.

    Declaration
    public T[] Parameters { get; set; }
    Property Value
    Type Description
    T[]

    Extension Methods

    Extensions.IsNull(object)
    Extensions.ToStringOrDefault(object)
    SimpleMapper.MapTo<T1>(object)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX