207 references to Tuple
CodeGenerator (9)
HttpUtilities\HttpUtilities.cs (9)
18new Tuple<string, String>("CONNECT ", "Connect"), 19new Tuple<string, String>("DELETE ", "Delete"), 20new Tuple<string, String>("HEAD ", "Head"), 21new Tuple<string, String>("PATCH ", "Patch"), 22new Tuple<string, String>("POST ", "Post"), 23new Tuple<string, String>("PUT ", "Put"), 24new Tuple<string, String>("OPTIONS ", "Options"), 25new Tuple<string, String>("TRACE ", "Trace"), 26new Tuple<string, String>("GET ", "Get")
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReaderAsync.cs (7)
678tuple = new Tuple<string, object>(originalStringValue, ReturnBoxedValue(_attributePSVI.typedAttributeValue, AttributeSchemaInfo.XmlType, unwrapTypedValue)); 683tuple = new Tuple<string, object>(originalStringValue, this.Value); 693tuple = new Tuple<string, object>(originalStringValue, _atomicValue); 700tuple = new Tuple<string, object>(originalStringValue, string.Empty); 711tuple = new Tuple<string, object>(originalStringValue, value); 726tuple = new Tuple<string, object>(originalStringValue, originalStringValue); 741return new Tuple<XmlSchemaType, object>(tuple_13.Item1, tuple_13.Item3);
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeGenerator.cs (2)
238Tuple<Type, string> key = new Tuple<Type, string>(type, name); 2710Tuple<Type, string> key = new Tuple<Type, string>(item.Value.LocalType, item.Key);
FrameworkFork\System.ServiceModel\Internals\System\Runtime\Diagnostics\EtwDiagnosticTrace.cs (4)
281new Tuple<string, string> (DiagnosticStrings.ExceptionTypeTag, XmlEncode(exception.GetType().AssemblyQualifiedName)), 282new Tuple<string, string> (DiagnosticStrings.MessageTag, XmlEncode(exception.Message)), 283new Tuple<string, string> (DiagnosticStrings.StackTraceTag, XmlEncode(StackTraceString(exception))), // Stack trace is sometimes null 284new Tuple<string, string> (DiagnosticStrings.ExceptionStringTag, XmlEncode(exception.ToString())),
Infrastructure.Common (18)
OSHelper.cs (18)
31new Tuple<string, OSID>("Mariner", OSID.Mariner), 32new Tuple<string, OSID>("debian", OSID.Debian), 33new Tuple<string, OSID>("fedora", OSID.Fedora), 34new Tuple<string, OSID>("sles", OSID.SLES), 35new Tuple<string, OSID>("opensuse", OSID.OpenSUSE), 36new Tuple<string, OSID>("osx", OSID.OSX), 37new Tuple<string, OSID>("rhel", OSID.RHEL), 38new Tuple<string, OSID>("ubuntu", OSID.Ubuntu), 42new Tuple<string, OSID>("win81", OSID.Windows_8_1 | OSID.Windows_Server_2012_R2), 43new Tuple<string, OSID>("win7", OSID.Windows_7 | OSID.Windows_Server_2008_R2), 52new Tuple<string, OSID>("Microsoft Windows 6.0.", OSID.Windows_Server_2008), 53new Tuple<string, OSID>("Microsoft Windows 6.1.", OSID.Windows_7 | OSID.Windows_Server_2008_R2), 54new Tuple<string, OSID>("Microsoft Windows 6.2.", OSID.Windows_8 | OSID.Windows_Server_2012), 55new Tuple<string, OSID>("Microsoft Windows 6.3.", OSID.Windows_8_1 | OSID.Windows_Server_2012_R2), 56new Tuple<string, OSID>("Microsoft Windows 10.", OSID.Windows_10 | OSID.Windows_Server_2016), 57new Tuple<string, OSID>(MicrosoftWindowsPhoneName, OSID.WindowsPhone), 58new Tuple<string, OSID>(MicrosoftWindowsName, OSID.AnyWindows), // reserved for "Don't know which version" 59new Tuple<string, OSID>("Darwin", OSID.OSX),
Interop.FunctionalTests (1)
H2SpecCommands.cs (1)
132testCases.Add(new Tuple<string, string>($"{groupName}/{sectionId}/{testNumber}", description));
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
Binding\FormDataMapperTests.cs (1)
1811var expected = new Tuple<int, string>(1, "John");
Microsoft.AspNetCore.Http.Abstractions.Tests (1)
UseMiddlewareTest.cs (1)
346public void AddKeyedService(object key, Type type, object value) => _services[key] = new Tuple<Type, object>(type, value);
Microsoft.AspNetCore.Http.Tests (1)
Features\FakeResponseFeature.cs (1)
12_onCompletedCallbacks.Add(new Tuple<Func<object, Task>, object>(callback, state));
Microsoft.AspNetCore.InternalTesting (2)
xunit\AspNetTestRunner.cs (2)
69result = new Tuple<decimal, string>(result.Item1, _testOutputHelper.Output); 102return new(totalTimeTaken, string.Join(Environment.NewLine, messages));
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\RequestContext.FeatureCollection.cs (2)
461_onStartingActions.Add(new Tuple<Func<object, Task>, object>(callback, state)); 472_onCompletedActions.Add(new Tuple<Func<object, Task>, object>(callback, state));
Microsoft.AspNetCore.Server.IntegrationTesting (1)
TestMatrix.cs (1)
88Skips.Add(new Tuple<Func<TestVariant, bool>, string>(check, message));
Microsoft.Build (49)
BackEnd\BuildManager\LegacyThreadingData.cs (1)
93_legacyThreadingEventsById[submissionId] = new Tuple<AutoResetEvent, ManualResetEvent>(
BackEnd\Components\Communications\NodeProviderOutOfProcBase.cs (1)
956_clientToServerStream.BeginRead(packetData, 0, packetLength, BodyReadComplete, new Tuple<byte[], int>(packetData, packetLength));
Construction\Solution\SolutionProjectGenerator.cs (9)
107new Tuple<string, string>("Configuration", null), // This is the solution configuration in a metaproject, and project configuration on an actual project 108new Tuple<string, string>("Platform", null), // This is the solution platform in a metaproject, and project platform on an actual project 109new Tuple<string, string>("BuildingSolutionFile", "true"), 110new Tuple<string, string>("CurrentSolutionConfigurationContents", null), 111new Tuple<string, string>("SolutionDir", null), 112new Tuple<string, string>("SolutionExt", null), 113new Tuple<string, string>("SolutionFileName", null), 114new Tuple<string, string>("SolutionName", null), 115new Tuple<string, string>(SolutionPathPropertyName, null)
Evaluation\Expander.cs (2)
3790AvailableStaticMethods.TryAdd(typeName, simpleMethodName, new Tuple<string, Type>(assemblyQualifiedTypeName, receiverType)); 3831AvailableStaticMethods.TryAdd(typeName, new Tuple<string, Type>(typeName, receiverType));
Resources\Constants.cs (36)
291var environmentType = new Tuple<string, Type>(null, typeof(Environment)); 292var directoryType = new Tuple<string, Type>(null, typeof(Directory)); 293var fileType = new Tuple<string, Type>(null, typeof(File)); 294var runtimeInformationType = new Tuple<string, Type>(null, typeof(RuntimeInformation)); 295var osPlatformType = new Tuple<string, Type>(null, typeof(OSPlatform)); 334availableStaticMethods.TryAdd("System.Globalization.CultureInfo::GetCultureInfo", new Tuple<string, Type>(null, typeof(CultureInfo))); // user request 335availableStaticMethods.TryAdd("System.Globalization.CultureInfo::new", new Tuple<string, Type>(null, typeof(CultureInfo))); // user request 336availableStaticMethods.TryAdd("System.Globalization.CultureInfo::CurrentUICulture", new Tuple<string, Type>(null, typeof(CultureInfo))); // user request 339availableStaticMethods.TryAdd("MSBuild", new Tuple<string, Type>(null, typeof(IntrinsicFunctions))); 340availableStaticMethods.TryAdd("System.Byte", new Tuple<string, Type>(null, typeof(Byte))); 341availableStaticMethods.TryAdd("System.Char", new Tuple<string, Type>(null, typeof(Char))); 342availableStaticMethods.TryAdd("System.Convert", new Tuple<string, Type>(null, typeof(Convert))); 343availableStaticMethods.TryAdd("System.DateTime", new Tuple<string, Type>(null, typeof(DateTime))); 344availableStaticMethods.TryAdd("System.DateTimeOffset", new Tuple<string, Type>(null, typeof(DateTimeOffset))); 345availableStaticMethods.TryAdd("System.Decimal", new Tuple<string, Type>(null, typeof(Decimal))); 346availableStaticMethods.TryAdd("System.Double", new Tuple<string, Type>(null, typeof(Double))); 347availableStaticMethods.TryAdd("System.Enum", new Tuple<string, Type>(null, typeof(Enum))); 348availableStaticMethods.TryAdd("System.Guid", new Tuple<string, Type>(null, typeof(Guid))); 349availableStaticMethods.TryAdd("System.Int16", new Tuple<string, Type>(null, typeof(Int16))); 350availableStaticMethods.TryAdd("System.Int32", new Tuple<string, Type>(null, typeof(Int32))); 351availableStaticMethods.TryAdd("System.Int64", new Tuple<string, Type>(null, typeof(Int64))); 352availableStaticMethods.TryAdd("System.IO.Path", new Tuple<string, Type>(null, typeof(Path))); 353availableStaticMethods.TryAdd("System.Math", new Tuple<string, Type>(null, typeof(Math))); 354availableStaticMethods.TryAdd("System.UInt16", new Tuple<string, Type>(null, typeof(UInt16))); 355availableStaticMethods.TryAdd("System.UInt32", new Tuple<string, Type>(null, typeof(UInt32))); 356availableStaticMethods.TryAdd("System.UInt64", new Tuple<string, Type>(null, typeof(UInt64))); 357availableStaticMethods.TryAdd("System.SByte", new Tuple<string, Type>(null, typeof(SByte))); 358availableStaticMethods.TryAdd("System.Single", new Tuple<string, Type>(null, typeof(Single))); 359availableStaticMethods.TryAdd("System.String", new Tuple<string, Type>(null, typeof(String))); 360availableStaticMethods.TryAdd("System.StringComparer", new Tuple<string, Type>(null, typeof(StringComparer))); 361availableStaticMethods.TryAdd("System.TimeSpan", new Tuple<string, Type>(null, typeof(TimeSpan))); 362availableStaticMethods.TryAdd("System.Text.RegularExpressions.Regex", new Tuple<string, Type>(null, typeof(Regex))); 363availableStaticMethods.TryAdd("System.UriBuilder", new Tuple<string, Type>(null, typeof(UriBuilder))); 364availableStaticMethods.TryAdd("System.Version", new Tuple<string, Type>(null, typeof(Version))); 365availableStaticMethods.TryAdd("Microsoft.Build.Utilities.ToolLocationHelper", new Tuple<string, Type>("Microsoft.Build.Utilities.ToolLocationHelper, Microsoft.Build.Utilities.Core, Version=" + MSBuildConstants.CurrentAssemblyVersion + ", Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", null)); 373var operatingSystemType = new Tuple<string, Type>("Microsoft.Build.Framework.OperatingSystem, Microsoft.Build.Framework, Version=" + MSBuildConstants.CurrentAssemblyVersion + ", Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", null);
Microsoft.Build.Framework (1)
Logging\LoggerParametersHelper.cs (1)
61yield return new Tuple<string, string?>(parameterAndValue[0], parameterAndValue.Length > 1 ? parameterAndValue[1] : null);
Microsoft.Build.Tasks.Core (4)
AssemblyDependency\ReferenceTable.cs (1)
2070redistListAndOtherFrameworkName = new Tuple<RedistList, string>(redistList, otherFrameworkName);
ResolveSDKReference.cs (3)
986ResolutionErrors.Add(new Tuple<string, object[]>(resourceId, parameters)); 994ResolutionWarnings.Add(new Tuple<string, object[]>(resourceId, parameters)); 1547StatusMessages.Add(new Tuple<string, object[]>(resource, parameters));
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceAssemblySymbol.cs (1)
2320locationAndValue = new Tuple<Location, string>(GetAssemblyAttributeLocationForDiagnostic(nodeOpt), displayName);
Symbols\Source\SourceNamedTypeSymbol_Bases.cs (1)
285return new Tuple<NamedTypeSymbol, ImmutableArray<NamedTypeSymbol>>(null, ImmutableArray<NamedTypeSymbol>.Empty);
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (9)
CodeActions\AddUsing\AddUsingNuGetTests.cs (9)
84""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object)); 121""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object)); 156""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object)); 191""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object)); 216""", new TestParameters(fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object))); 238var data = new FixProviderData(installerServiceMock.Object, packageServiceMock.Object); 302""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object)); 339""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object)); 374""", fixProviderData: new FixProviderData(installerServiceMock.Object, packageServiceMock.Object));
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
ObjectFormatterTests.cs (1)
78var tup = new Tuple<int, int>(1, 2);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (2)
CSharpTestBase.cs (2)
1766return new Tuple<TNode, SemanticModel>(node, compilation.GetSemanticModel(compilation.SyntaxTrees[treeIndex])); 1777return new Tuple<IList<TNode>, SemanticModel>(nodes, compilation.GetSemanticModel(compilation.SyntaxTrees[treeIndex]));
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Protocol\Converters\ParameterInformationConverter.cs (1)
27parameter.Label = new Tuple<int, int>(labelElement[0].GetInt32(), labelElement[1].GetInt32());
Microsoft.CodeAnalysis.Test.Utilities (4)
Assert\AssertXml.cs (3)
145Tuple<XElement, XElement> rootPair = new Tuple<XElement, XElement>(expectedRoot, actualRoot); 197stack.Push(new Tuple<XElement, XElement>(child1, child2)); 265return new Tuple<XName, string>(attribute.Name, attribute.Value);
Win32Res.cs (1)
269return new Tuple<string, string>(new string(key), new string(value));
Microsoft.DotNet.Build.Tasks.Packaging (1)
NugetPropertyStringProvider.cs (1)
68return new Tuple<string, string>(key, value);
Microsoft.Maui.Controls (13)
Brush\BrushTypeConverter.cs (1)
297 return new Tuple<Point, Point>(startPoint, endPoint);
TableView\TableView.cs (1)
203 SetPath(cell, new Tuple<int, int>(section, row));
TemplatedItemsList.cs (9)
445 return new Tuple<int, int>(-1, -1); 447 return new Tuple<int, int>(0, GetGlobalIndexOfItem(item)); 456 return new Tuple<int, int>(group, index); 462 return new Tuple<int, int>(-1, -1); 468 return new Tuple<int, int>(0, GetGlobalIndexOfItem(item)); 470 return new Tuple<int, int>(-1, -1); 480 return new Tuple<int, int>(groupIndex, i); 484 return new Tuple<int, int>(groupIndex, -1); 490 return new Tuple<int, int>(-1, -1);
TypedBinding.cs (2)
108 new(static source => source, propertyName), 220 handlers[i] = new Tuple<Func<TSource, object>, string>(_handlers[i].PartGetter, _handlers[i].PropertyName);
Microsoft.Maui.Controls.Build.Tasks (5)
PerformanceProvider.cs (1)
43 stats.StartTimes.Add(new Tuple<string, long>(reference, Stopwatch.GetTimestamp()));
SetNamescopesAndRegisterNamesVisitor.cs (2)
74 Context.Scopes[node] = new Tuple<VariableDefinition, IList<string>>(namescopeVarDef, namesInNamescope); 83 Context.Scopes[node] = new System.Tuple<VariableDefinition, IList<string>>(namescopeVarDef, namesInNamescope);
SetPropertiesVisitor.cs (1)
1900 templateContext.Scopes[kvp.Key] = new Tuple<VariableDefinition, IList<string>>(varDefScope, kvp.Value.Item2);
TypeReferenceExtensions.cs (1)
281 yield return new Tuple<MethodDefinition, TypeReference>(method, typeRef);
Microsoft.ML.AutoML (4)
Sweepers\SmacSweeper.cs (2)
200configurations.Add(new Tuple<double, ParameterSet>(randomEIs[i], randomConfigs[i])); 245return new Tuple<double, ParameterSet>(currentBestEI, currentBestConfig);
Tuner\SmacTuner.cs (2)
207var randomConfigurations = randomParameters.Select(parameter => new Tuple<double, Parameter>(EvaluateConfigurationsByEI(forest, bestLoss, parameter), parameter)); 250return new Tuple<double, Parameter>(currentBestEI, currentBestConfig);
Microsoft.ML.Core (3)
Utilities\MatrixTransposeOps.cs (3)
93IEnumerable<Tuple<int, int>> ijenum = ienum.SelectMany(i => jenum.Select(j => new Tuple<int, int>(i, j))); 145IEnumerable<Tuple<int, int>> ijenum = ienum.SelectMany(i => jenum.Select(j => new Tuple<int, int>(i, j))); 198IEnumerable<Tuple<int, int>> ijenum = ienum.SelectMany(i => jenum.Select(j => new Tuple<int, int>(i, j)));
Microsoft.ML.Core.Tests (12)
UnitTests\TestHosts.cs (12)
33hosts.Add(new Tuple<IHost, int>(mainHost.Register("1"), 1)); 34hosts.Add(new Tuple<IHost, int>(mainHost.Register("2"), 1)); 35hosts.Add(new Tuple<IHost, int>(mainHost.Register("3"), 1)); 36hosts.Add(new Tuple<IHost, int>(mainHost.Register("4"), 1)); 37hosts.Add(new Tuple<IHost, int>(mainHost.Register("5"), 1)); 48hosts.Add(new Tuple<IHost, int>(newHost, randHostTuple.Item2 + 1)); 96hosts.Add(new Tuple<IHost, int>(mainHost.Register("1"), 1)); 97hosts.Add(new Tuple<IHost, int>(mainHost.Register("2"), 1)); 98hosts.Add(new Tuple<IHost, int>(mainHost.Register("3"), 1)); 99hosts.Add(new Tuple<IHost, int>(mainHost.Register("4"), 1)); 100hosts.Add(new Tuple<IHost, int>(mainHost.Register("5"), 1)); 106hosts.Add(new Tuple<IHost, int>(newHost, tuple.Item2 + 1));
Microsoft.ML.Data (1)
EntryPoints\EntryPointNode.cs (1)
976return new Tuple<Var<T>, VariableBinding>(new Var<T> { VarName = varBinding.VariableName }, varBinding);
Microsoft.ML.Sweeper (2)
Algorithms\SmacSweeper.cs (2)
214configurations.Add(new Tuple<double, ParameterSet>(randomEIs[i], randomConfigs[i])); 254return new Tuple<double, ParameterSet>(currentBestEI, currentBestConfig);
Microsoft.ML.TimeSeries (5)
RootCauseAnalyzer.cs (1)
634return new Tuple<double, double>(surprise, ep);
SrCnnEntireAnomalyDetector.cs (4)
769segments.Add(new Tuple<int, int>(start, cursor)); 779segments.Add(new Tuple<int, int>(start, Math.Max(start, cursor))); 913fitValues.Add(new Tuple<int, double>(i, data[i])); 927fitValues.Add(new Tuple<int, double>(i, data[i]));
Microsoft.ML.TorchSharp (1)
AutoFormerV2\Attention.cs (1)
80var offset = new Tuple<int, int>(Math.Abs(points[i][0] - points[j][0]), Math.Abs(points[i][1] - points[j][1]));
Microsoft.ML.Vision (4)
ImageClassificationTrainer.cs (4)
115{ Architecture.ResnetV2101, new Tuple<int, int>(299,299) }, 116{ Architecture.InceptionV3, new Tuple<int, int>(299,299) }, 117{ Architecture.MobilenetV2, new Tuple<int, int>(224,224) }, 118{ Architecture.ResnetV250, new Tuple<int, int>(299,299) }
Microsoft.Net.Http.Headers.Tests (5)
RangeItemHeaderValueTest.cs (5)
101CheckValidTryParse(",,1-2, 3 - , , -6 , ,,", new Tuple<long?, long?>(1, 2), new Tuple<long?, long?>(3, null), 102new Tuple<long?, long?>(null, 6)); 103CheckValidTryParse("1-2,", new Tuple<long?, long?>(1, 2)); 104CheckValidTryParse("1-", new Tuple<long?, long?>(1, null));
PresentationCore (3)
MS\Internal\DpiUtil\DpiUtil+HwndDpiInfo.cs (2)
27internal HwndDpiInfo(IntPtr hWnd, bool fallbackToNearestMonitorHeuristic) : base( 41: base(dpiAwarenessContextValue, dpiScale)
System\Windows\InterOp\D3DImage.cs (1)
756Tuple<bool, uint> parameters = new(isFrontBufferAvailable, version);
PresentationFramework (9)
System\Windows\Controls\Primitives\Selector.cs (1)
2025ranges.Add(new Tuple<int, int>(startRange, endRange-startRange+1));
System\Windows\Controls\VirtualizingStackPanel.cs (3)
11924: base(pixelSize, itemSize) 11944: base(pixelSize, itemSize) 12532new Tuple<WeakReference<ItemsControl>,TraceList>(
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (1)
657public HasErrorsResult(string text, bool hasErrors) : base(text, hasErrors) {}
System\Windows\Documents\TextStore.cs (1)
5004new Tuple<WeakReference<FrameworkElement>,TraceList>(
System\Windows\Documents\WinRTSpellerInterop.cs (3)
332_spellCheckers[culture] = new Tuple<WordsSegmenter, SpellChecker>(wordBreaker, spellChecker); 425return new Tuple<string, string>(null, null); 476return new Tuple<string, string>(ietfLanguageTag, lexiconPrivateCopyPath);
System.Collections.Concurrent (2)
System\Collections\Concurrent\PartitionerStatic.cs (2)
224yield return new Tuple<long, long>(from, to); 278yield return new Tuple<int, int>(from, to);
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\CustomValidationAttribute.cs (1)
108public override object TypeId => _typeId ??= new Tuple<string, Type>(Method, ValidatorType);
System.ComponentModel.Composition (8)
System\ComponentModel\Composition\Hosting\CatalogExportProvider.CatalogChangeProxy.cs (1)
49addedExports.Add(new Tuple<ComposablePartDefinition, ExportDefinition>(part, export));
System\ComponentModel\Composition\Hosting\DirectoryCatalog.cs (2)
707catalogsToAdd.Add(new Tuple<string, AssemblyCatalog>(file, catalog)); 718catalogsToRemove.Add(new Tuple<string, AssemblyCatalog>(file, catalog));
System\ComponentModel\Composition\Primitives\ComposablePartDefinition.cs (2)
120singleExport = new Tuple<ComposablePartDefinition, ExportDefinition>(this, export); 129multipleExports.Add(new Tuple<ComposablePartDefinition, ExportDefinition>(this, export));
System\ComponentModel\Composition\ReflectionModel\ExportfactoryCreator.LifetimeContext.cs (1)
57return new Tuple<T, Action>(exportedValue, disposeAction);
System\ComponentModel\Composition\ReflectionModel\ReflectionComposablePartDefinition.cs (2)
234singleExport = new Tuple<ComposablePartDefinition, ExportDefinition>(this, export); 243multipleExports.Add(new Tuple<ComposablePartDefinition, ExportDefinition>(this, export));
System.Composition.Convention (1)
System\Composition\Convention\PartConventionBuilder.cs (1)
652configuredMembers.Add(new Tuple<object, List<Attribute>>(mi, s_onImportsSatisfiedAttributeList));
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Tuple.cs (1)
31return new Tuple<T1, T2>(item1, item2);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\DataContractSet.cs (1)
504genericParameters[i] = new Tuple<Type, object[]?>(paramType, paramParameters);
System.Text.Json (1)
System\Text\Json\Serialization\Converters\FSharp\FSharpMapConverter.cs (1)
26((List<Tuple<TKey, TValue>>)state.Current.ReturnValue!).Add(new Tuple<TKey, TValue>(key, value));
System.Xaml (1)
System\Xaml\Schema\ReferenceEqualityComparer.cs (1)
13: base(item1, item2)
xunit.console (1)
common\AssemblyResolution\DependencyContextAssemblyCache.cs (1)
22static readonly Tuple<string, Assembly> ManagedAssemblyNotFound = new Tuple<string, Assembly>(null, null);