| 1234567891011121314151617181920212223242526272829303132 |
- namespace IndexFormula.Finance
- {
- using System;
- using System.Collections;
- using System.Reflection;
- public class AxisXCollection : CollectionBase
- {
- public virtual int Add(FormulaAxisX fax)
- {
- return base.List.Add(fax);
- }
- public void Remove(FormulaAxisX value)
- {
- base.List.Remove(value);
- }
- public virtual FormulaAxisX this[int Index]
- {
- get
- {
- if (Index < base.List.Count)
- {
- return (FormulaAxisX) base.List[Index];
- }
- return null;
- }
- }
- }
- }
|