You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CSharpEditingTests.ScrollingAndTyping speedometer test shows 0.6% of all VS allocations from VS start until opening the file under UnresolvedMessages.GetMessageAsync.
The primary issue here is the use of a SortedSet as it's ctor allocates a fair bit, and each node in the set requires an allocation for the wrapping node. Instead, the code could be modified to not require the collection to be sorted without any performance impact.
Verbose Logs
The text was updated successfully, but these errors were encountered:
NuGet Product Used
Other/NA
Product Version
VS 17.14
Worked before?
No response
Impact
It bothers me. A fix would be nice
Repro Steps & Context
CSharpEditingTests.ScrollingAndTyping speedometer test shows 0.6% of all VS allocations from VS start until opening the file under UnresolvedMessages.GetMessageAsync.
The primary issue here is the use of a SortedSet as it's ctor allocates a fair bit, and each node in the set requires an allocation for the wrapping node. Instead, the code could be modified to not require the collection to be sorted without any performance impact.
Verbose Logs
The text was updated successfully, but these errors were encountered: