| 12345678910111213141516171819 |
- namespace IndexFormula.Finance
- {
- using System;
- using System.Collections;
- public class LayoutLabelCollection : CollectionBase
- {
- public virtual void Add(LayoutLabel ll)
- {
- base.List.Add(ll);
- }
- public void Remove(LayoutLabel ll)
- {
- base.List.Remove(ll);
- }
- }
- }
|