| 123456789101112131415161718192021222324252627 |
- namespace IndexFormula.Finance
- {
- using System;
- using System.Collections;
- using System.Reflection;
- public class DataCycleCollection : CollectionBase
- {
- public int Add(DataCycle value)
- {
- return base.List.Add(value);
- }
- public DataCycle this[int index]
- {
- get
- {
- return (DataCycle) base.List[index];
- }
- set
- {
- base.List[index] = value;
- }
- }
- }
- }
|