using System.Collections.ObjectModel; namespace Unity.VisualScripting { public class ProfiledSegmentCollection : KeyedCollection { protected override string GetKeyForItem(ProfiledSegment item) { return item.name; } } }