Why my C# does not have System.ServiceProcess Library?

前端 未结 3 1138
故里飘歌
故里飘歌 2021-01-07 18:17

This is the code. I just wanna test the library of System.ServiceProcess library.

using System;
using System.Collections.Generic;
using System.Linq;
using Sy         


        
3条回答
  •  不知归路
    2021-01-07 18:57

    You need to add a reference to the corresponding .dll as well.

    Right click on the project -> Add Reference -> Assemblies -> Framework -> System.ServiceProcess

提交回复
热议问题