DataCycleCollection.cs 529 B

123456789101112131415161718192021222324252627
  1. namespace IndexFormula.Finance
  2. {
  3. using System;
  4. using System.Collections;
  5. using System.Reflection;
  6. public class DataCycleCollection : CollectionBase
  7. {
  8. public int Add(DataCycle value)
  9. {
  10. return base.List.Add(value);
  11. }
  12. public DataCycle this[int index]
  13. {
  14. get
  15. {
  16. return (DataCycle) base.List[index];
  17. }
  18. set
  19. {
  20. base.List[index] = value;
  21. }
  22. }
  23. }
  24. }