docs.unity3d.com
    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
    Terms of use
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023