public TooltipCollection Clone() { TooltipCollection clonedTooltip = new TooltipCollection(count); lock (this) { foreach (Tooltip item in this) { clonedTooltip.Add(item); } } return(clonedTooltip); }
public TooltipRegister() { __tooltips = new TooltipCollection(); }