版博士V2.0程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ForLib.cs 435 B

123456789101112131415161718192021
  1. using ProductionControl.Utils;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Timers;
  8. namespace ProductionControl.Device
  9. {
  10. public class ForLib
  11. {
  12. //uuid, Num(1-n)
  13. public Dictionary<long, int> dicData=new Dictionary<long, int>();
  14. public void clear()
  15. {
  16. dicData.Clear();
  17. }
  18. }
  19. }