Show / Hide Table of Contents

Struct Extensions.Pair<TFirst, TSecond>

Struct used in IterateWith<TFirst, TSecond>(IEnumerable<TFirst>, IEnumerable<TSecond>) to iterate two IEnumerables together.

Namespace: sttz.Trimmer.Extensions
Assembly: Trimmer.dll
Syntax
public struct Pair<TFirst, TSecond>
Type Parameters
Name Description
TFirst
TSecond

Constructors

| Improve this Doc View Source

Pair(TFirst, TSecond)

Declaration
public Pair(TFirst first, TSecond second)
Parameters
Type Name Description
TFirst first
TSecond second

Properties

| Improve this Doc View Source

First

Declaration
public TFirst First { get; }
Property Value
Type Description
TFirst
| Improve this Doc View Source

Second

Declaration
public TSecond Second { get; }
Property Value
Type Description
TSecond
  • Improve this Doc
  • View Source
Back to top © 2017 Adrian Stutz