6 references to Insert
aspire (3)
Utils\Markdown\MarkdownToSpectreConverter.cs (3)
139builder.Insert(nextIndex, " ", continuationIndent); 155builder.Insert(contentStart, " ", indentation); 168builder.Insert(nextIndex, " ", indentation);
Aspire.Dashboard (1)
Utils\DashboardUIHelpers.cs (1)
83.Insert(0, s, n)
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (2)
1449public StringBuilder Insert(int index, object? value) => (value == null) ? this : Insert(index, value.ToString(), 1); 1478return Insert(index, value.ToString(), 1);