Search Results for

    Show / Hide Table of Contents

    Class Pair<T>

    Represents a pair of values of the same type.

    Inheritance
    object
    Pair<T>
    Inherited Members
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: Sdl.LanguagePlatform.Core
    Assembly: Sdl.LanguagePlatform.Core.dll
    Syntax
    public class Pair<T>
    Type Parameters
    Name Description
    T

    Constructors

    Pair()

    Initializes a new instance with the default values of T.

    Declaration
    public Pair()

    Pair(T, T)

    Initializes a new instance with the specified values.

    Declaration
    public Pair(T left, T right)
    Parameters
    Type Name Description
    T left

    The left value

    T right

    The right value

    Fields

    Left

    Gets or sets the left value.

    Declaration
    public T Left
    Field Value
    Type Description
    T

    Right

    Gets or sets the right value.

    Declaration
    public T Right
    Field Value
    Type Description
    T
    In this article
    • Constructors
      • Pair()
      • Pair(T, T)
    • Fields
      • Left
      • Right
    Back to top Generated by DocFX