CNAS取数仪器端升级
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ProjectInstaller.cs 402B

il y a 4 mois
123456789101112131415161718
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Configuration.Install;
  6. using System.Linq;
  7. namespace CNAS_SyncService
  8. {
  9. [RunInstaller(true)]
  10. public partial class ProjectInstaller : System.Configuration.Install.Installer
  11. {
  12. public ProjectInstaller()
  13. {
  14. InitializeComponent();
  15. }
  16. }
  17. }