14 references to Stack
ILCompiler.Compiler (3)
Compiler\Dataflow\MethodBodyScanner.cs (3)
132return new Stack<StackSlot>(newStack); 154knownStacks.Add(newOffset, new Stack<StackSlot>(newStack.Reverse())); 368currentStack = new Stack<StackSlot>(knownStack.Reverse());
illink (4)
Microsoft.Build (1)
BackEnd\Components\Scheduler\SchedulingPlan.cs (1)
309Stack<PlanConfigData> pathToAdd = new Stack<PlanConfigData>(currentPath);
Microsoft.CodeAnalysis.NetAnalyzers (1)
Microsoft.NetCore.Analyzers\Security\PotentialReferenceCycleInDeserializedObjectGraph.cs (1)
230var stack = new Stack<ISymbol>(degree.Where(s => s.Value == 0).Select(s => s.Key));
Microsoft.Extensions.AI.Abstractions.Tests (1)
test\Shared\JsonSchemaExporter\TestTypes.cs (1)
818yield return new TestData<Stack<char>>(new(['x', '2', '+']), """{"type":["array","null"],"items":{"type":"string","minLength":1,"maxLength":1}}""");
Microsoft.NET.Build.Tasks (2)
DependencyContextBuilder.cs (1)
882Stack<LibraryDependency> dependenciesToWalk = new(_libraryDependencies[_platformLibrary]);
ResolvePackageAssets.cs (1)
1943Stack<string> dependenciesToWalk = new(
Shared.Tests (1)
JsonSchemaExporter\TestTypes.cs (1)
818yield return new TestData<Stack<char>>(new(['x', '2', '+']), """{"type":["array","null"],"items":{"type":"string","minLength":1,"maxLength":1}}""");
System.ComponentModel.Composition (1)
Microsoft\Internal\Collections\CollectionServices.cs (1)
204return new Stack<T>(stack.Reverse());