5 implementations of Create
Microsoft.AspNetCore.Razor.Utilities.Shared (3)
PooledObjects\CustomObjectPool`1.cs (1)
19
public abstract T
Create
();
PooledObjects\DefaultPool.cs (2)
32
public T
Create
() => factory();
44
public T
Create
() => factory(arg);
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\Legacy\LegacySyntaxNodeExtensions.ChildSyntaxListReversedEnumeratorStack.Policy.cs (1)
22
public ChildSyntaxList.Reversed.Enumerator[]
Create
() => new ChildSyntaxList.Reversed.Enumerator[16];
Language\Syntax\SyntaxNode.Iterators.cs (1)
81
public ChildSyntaxList.Enumerator[]
Create
() => new ChildSyntaxList.Enumerator[16];
1 reference to Create
Microsoft.AspNetCore.Razor.Utilities.Shared (1)
PooledObjects\ObjectPool.cs (1)
34
_pool = new(() => _policy.
Create
(), maximumRetained);