终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
285 B

  1. namespace BPASmart.SmallBatchingSystem
  2. {
  3. public class Main
  4. {
  5. private volatile static Main _Instance;
  6. public static Main GetInstance => _Instance ?? (_Instance = new Main());
  7. private Main() { }
  8. public void Start()
  9. {
  10. }
  11. }
  12. }