docs.unity.cn
    Show / Hide Table of Contents

    Struct SimpleTuple<T1, T2>

    This is simplified Tuple struct that holds only two elements, and doesn't implement any operations.

    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetType()
    Namespace: UnityEngine.ProBuilder
    Syntax
    public struct SimpleTuple<T1, T2>
    Type Parameters
    Name Description
    T1

    First element.

    T2

    Second element.

    Constructors

    SimpleTuple(T1, T2)

    Constructs a simplified Tuple with two elements.

    Declaration
    public SimpleTuple(T1 item1, T2 item2)
    Parameters
    Type Name Description
    T1 item1

    First element.

    T2 item2

    Second element.

    Properties

    item1

    Gets or sets the first element.

    Declaration
    public T1 item1 { get; set; }
    Property Value
    Type Description
    T1

    item2

    Gets or sets the second element.

    Declaration
    public T2 item2 { get; set; }
    Property Value
    Type Description
    T2

    Methods

    ToString()

    Returns a string that represents this Tuple.

    Declaration
    public override string ToString()
    Returns
    Type Description
    String

    A comma-delimited string (for example &quot;[item1],[item2]&quot;).

    Overrides
    ValueType.ToString()
    Back to top Copyright © 2023 Unity Technologies
    Generated by DocFX
    on Wednesday, April 12, 2023
    Terms of use