3 references to Insert
Aspire.Dashboard (1)
Utils\DashboardUIHelpers.cs (1)
66.Insert(0, s, n)
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (2)
1395public StringBuilder Insert(int index, object? value) => (value == null) ? this : Insert(index, value.ToString(), 1); 1424return Insert(index, value.ToString(), 1);