16 references to Create
Microsoft.Build.Framework (1)
ImmutableSegmentedList.cs (1)
13/// <inheritdoc cref="ImmutableList.Create{T}()"/>
Microsoft.CodeAnalysis (3)
InternalUtilities\ImmutableListExtensions.cs (2)
16return ImmutableList.Create<T>(); 26return ImmutableList.Create<T>();
src\Dependencies\Collections\ImmutableSegmentedList.cs (1)
13/// <inheritdoc cref="ImmutableList.Create{T}()"/>
Microsoft.CodeAnalysis.CodeStyle (3)
src\Compilers\Core\Portable\InternalUtilities\ImmutableListExtensions.cs (2)
16return ImmutableList.Create<T>(); 26return ImmutableList.Create<T>();
src\Dependencies\Collections\ImmutableSegmentedList.cs (1)
13/// <inheritdoc cref="ImmutableList.Create{T}()"/>
Microsoft.CodeAnalysis.Collections.Package (1)
ImmutableSegmentedList.cs (1)
13/// <inheritdoc cref="ImmutableList.Create{T}()"/>
Microsoft.CodeAnalysis.Workspaces (3)
src\Compilers\Core\Portable\InternalUtilities\ImmutableListExtensions.cs (2)
16return ImmutableList.Create<T>(); 26return ImmutableList.Create<T>();
src\Dependencies\Collections\ImmutableSegmentedList.cs (1)
13/// <inheritdoc cref="ImmutableList.Create{T}()"/>
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (3)
src\Compilers\Core\Portable\InternalUtilities\ImmutableListExtensions.cs (2)
16return ImmutableList.Create<T>(); 26return ImmutableList.Create<T>();
src\Dependencies\Collections\ImmutableSegmentedList.cs (1)
13/// <inheritdoc cref="ImmutableList.Create{T}()"/>
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\SolutionTests.cs (1)
4661Assert.Throws<ArgumentException>(() => solution = solution.WithProjectDocumentsOrder(pid, ImmutableList.Create<DocumentId>()));
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableList.cs (1)
62public static ImmutableList<T>.Builder CreateBuilder<T>() => Create<T>().ToBuilder();