5 instantiations of Tuple
Microsoft.Extensions.AsyncState.Tests (2)
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Tuple.cs (2)
26return new Tuple<T1>(item1);
61return new Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8>>(item1, item2, item3, item4, item5, item6, item7, new Tuple<T8>(item8));
31 references to Tuple
Microsoft.Extensions.AsyncState.Tests (6)
mscorlib (1)
netstandard (1)
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Tuple.cs (5)
24public static Tuple<T1> Create<T1>(T1 item1)
59public static Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8>> Create<T1, T2, T3, T4, T5, T6, T7, T8>(T1 item1, T2 item2, T3 item3, T4 item4, T5 item5, T6 item6, T7 item7, T8 item8)
61return new Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8>>(item1, item2, item3, item4, item5, item6, item7, new Tuple<T8>(item8));
130if (other is not Tuple<T1> objTuple)
152if (other is not Tuple<T1> objTuple)
src\runtime\src\libraries\System.Private.CoreLib\src\System\TupleExtensions.cs (9)
22this Tuple<T1> value,
120this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8>> value,
267this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11, T12, T13, T14, Tuple<T15>>> value,
465this Tuple<T1> value)
535this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8>> value)
612this Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11, T12, T13, T14, Tuple<T15>>> value)
696public static Tuple<T1>
766public static Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8>>
843public static Tuple<T1, T2, T3, T4, T5, T6, T7, Tuple<T8, T9, T10, T11, T12, T13, T14, Tuple<T15>>>
System.Runtime (1)
System.ServiceModel.Http (1)
System.ServiceModel.NetFramingBase (1)
System.ServiceModel.Primitives (2)