11 references to Stack
PresentationBuildTasks (2)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\ParserContext.cs (1)
487
_langSpaceStack = new
Stack
(1);
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\TemplateXamlParser.cs (1)
1873
Stack _elementTypeStack = new
Stack
(5);
PresentationFramework (7)
MS\Internal\Documents\ParentUndoUnit.cs (1)
490
_units = new
Stack
(2);
MS\Internal\Documents\UndoManager.cs (2)
78
_redoStack = new
Stack
(2);
662
value = new
Stack
(2);
MS\Internal\IO\Packaging\XamlFilter.cs (1)
111
_contextStack = new
Stack
(32);
System\Windows\Markup\ParserContext.cs (2)
362
_nameScopeStack = new
Stack
(2);
487
_langSpaceStack = new
Stack
(1);
System\Windows\Style.cs (1)
601
Stack basedOnHierarchy = new
Stack
(10); // 10 because that's the default value (see MSDN) and the perf team wants us to specify something.
System.Collections.NonGeneric (2)
System\Collections\Stack.cs (2)
55
public Stack(ICollection col) :
this
(col?.Count ?? throw new ArgumentNullException(nameof(col)))
87
Stack s = new
Stack
(_size);