WPF

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class Tuple<T1, T2> - WPF API Reference | Syncfusion

    Show / Hide Table of Contents

    Class Tuple<T1, T2>

    Represents a 2-tuple, or pair.

    Inheritance
    System.Object
    Tuple<T1, T2>
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: Syncfusion.UI.Xaml.Diagram
    Assembly: Syncfusion.SfDiagram.WPF.dll
    Syntax
    public class Tuple<T1, T2>
    Type Parameters
    Name Description
    T1
    T2

    Constructors

    Tuple(T1, T2)

    Initializes a new instance of the Tuple<T1, T2> class.

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

    The type of the tuple's first component.

    T2 item2

    The type of the tuple's second component.

    Properties

    Item1

    Gets the value of the current Tuple object's first component.

    Declaration
    public T1 Item1 { get; }
    Property Value
    Type Description
    T1

    Item2

    Gets the value of the current Tuple object's second component.

    Declaration
    public T2 Item2 { get; }
    Property Value
    Type Description
    T2
    Back to top Generated by DocFX
    Copyright © 2001 - 2022 Syncfusion Inc. All Rights Reserved