CommunalTarget.cs 416 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IntelligentControlForsx.Code
  7. {
  8. public static class CommunalTarget
  9. {
  10. static UpdMemory<double> udpDoubleMemory = new UpdMemory<double>();
  11. public static UpdMemory<double> UdpDoubleMemory
  12. {
  13. get { return udpDoubleMemory; }
  14. }
  15. }
  16. }