基本信息
源码名称:C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序)
源码大小:0.12M
文件格式:.zip
开发语言:C#
更新时间:2023-06-28
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序)
按照C#发现之旅 --- C#开发Windows Service程序 pdf 自己实践编写的实例 绝对能用 为了多谢大家的支持免费下载啦
.
├── C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序).rar
├── C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序).zip
└── myWindowsService
├── FrmSettings.Designer.cs
├── FrmSettings.cs
├── FrmSettings.resx
├── Installer1.Designer.cs
├── Installer1.cs
├── Installer1.resx
├── Logger.cs
├── MyConfig.cs
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Util.cs
├── _ReSharper.myWindowsService
│ ├── BuildScriptCache
│ │ ├── 0
│ │ ├── 5
│ │ ├── 6
│ │ │ └── 3e82bf8d.dat
│ │ └── 9
│ ├── DecompilerCache
│ ├── ModuleIds.xml
│ ├── NamedArguments
│ │ └── 8
│ │ └── 1e45bc5.dat
│ ├── PdbInfo
│ ├── ProjectModel
│ │ └── ProjectModel.dat
│ ├── Resources
│ │ └── 2
│ │ └── 1a765111.dat
│ ├── SymbolCache.bin
│ ├── TagPrefixes
│ ├── TodoCache
│ │ └── 8
│ │ └── 418a74dc.dat
│ ├── WebsiteFileReferences
│ └── WordIndex
│ └── 3
│ └── 1caf84ea.dat
├── bin
│ ├── Debug
│ │ ├── Dubuger.bat
│ │ ├── FileSystemWatcher.mdb
│ │ ├── InstallUtil.InstallLog
│ │ ├── RunClient.bat
│ │ ├── ServiceInstall.bat
│ │ ├── ServiceStart.bat
│ │ ├── ServiceStop.bat
│ │ ├── ServiceUninstall.bat
│ │ ├── install - 副本.bat
│ │ ├── myWindowsService.InstallLog
│ │ ├── myWindowsService.InstallState
│ │ ├── myWindowsService.exe
│ │ ├── myWindowsService.pdb
│ │ ├── myWindowsService.vshost.exe
│ │ └── myWindowsService.vshost.exe.manifest
│ └── Release
├── frmClient.Designer.cs
├── frmClient.cs
├── frmClient.resx
├── myWindowsService.5.1.ReSharper.user
├── myWindowsService.cs
├── myWindowsService.csproj
├── myWindowsService.resx
├── myWindowsService.sln
├── myWindowsService.suo
└── obj
└── x86
└── Debug
├── DesignTimeResolveAssemblyReferences.cache
├── DesignTimeResolveAssemblyReferencesInput.cache
├── GenerateResource.read.1.tlog
├── GenerateResource.write.1.tlog
├── TempPE
├── myWindowsService.FrmSettings.resources
├── myWindowsService.Installer1.resources
├── myWindowsService.Properties.Resources.resources
├── myWindowsService.csproj.FileListAbsolute.txt
├── myWindowsService.exe
├── myWindowsService.frmClient.resources
├── myWindowsService.myWindowsService.resources
└── myWindowsService.pdb
28 directories, 61 files
C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序)
按照C#发现之旅 --- C#开发Windows Service程序 pdf 自己实践编写的实例 绝对能用 为了多谢大家的支持免费下载啦
.
├── C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序).rar
├── C# windows服务实例(C#发现之旅 --- C#开发Windows Service程序).zip
└── myWindowsService
├── FrmSettings.Designer.cs
├── FrmSettings.cs
├── FrmSettings.resx
├── Installer1.Designer.cs
├── Installer1.cs
├── Installer1.resx
├── Logger.cs
├── MyConfig.cs
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Util.cs
├── _ReSharper.myWindowsService
│ ├── BuildScriptCache
│ │ ├── 0
│ │ ├── 5
│ │ ├── 6
│ │ │ └── 3e82bf8d.dat
│ │ └── 9
│ ├── DecompilerCache
│ ├── ModuleIds.xml
│ ├── NamedArguments
│ │ └── 8
│ │ └── 1e45bc5.dat
│ ├── PdbInfo
│ ├── ProjectModel
│ │ └── ProjectModel.dat
│ ├── Resources
│ │ └── 2
│ │ └── 1a765111.dat
│ ├── SymbolCache.bin
│ ├── TagPrefixes
│ ├── TodoCache
│ │ └── 8
│ │ └── 418a74dc.dat
│ ├── WebsiteFileReferences
│ └── WordIndex
│ └── 3
│ └── 1caf84ea.dat
├── bin
│ ├── Debug
│ │ ├── Dubuger.bat
│ │ ├── FileSystemWatcher.mdb
│ │ ├── InstallUtil.InstallLog
│ │ ├── RunClient.bat
│ │ ├── ServiceInstall.bat
│ │ ├── ServiceStart.bat
│ │ ├── ServiceStop.bat
│ │ ├── ServiceUninstall.bat
│ │ ├── install - 副本.bat
│ │ ├── myWindowsService.InstallLog
│ │ ├── myWindowsService.InstallState
│ │ ├── myWindowsService.exe
│ │ ├── myWindowsService.pdb
│ │ ├── myWindowsService.vshost.exe
│ │ └── myWindowsService.vshost.exe.manifest
│ └── Release
├── frmClient.Designer.cs
├── frmClient.cs
├── frmClient.resx
├── myWindowsService.5.1.ReSharper.user
├── myWindowsService.cs
├── myWindowsService.csproj
├── myWindowsService.resx
├── myWindowsService.sln
├── myWindowsService.suo
└── obj
└── x86
└── Debug
├── DesignTimeResolveAssemblyReferences.cache
├── DesignTimeResolveAssemblyReferencesInput.cache
├── GenerateResource.read.1.tlog
├── GenerateResource.write.1.tlog
├── TempPE
├── myWindowsService.FrmSettings.resources
├── myWindowsService.Installer1.resources
├── myWindowsService.Properties.Resources.resources
├── myWindowsService.csproj.FileListAbsolute.txt
├── myWindowsService.exe
├── myWindowsService.frmClient.resources
├── myWindowsService.myWindowsService.resources
└── myWindowsService.pdb
28 directories, 61 files