实例介绍
阐述主机扫描、串口通信、TCP协议编程、UDP协议编程、木马程序、屏幕监视、IP语音网络通信、网络视频传输、Email协议编程、FTP协议编程、网络测量程序、网络信息加密传输和网络信息隐藏通信编程等原理、技术分析、实现方法和开发案例,内容丰富。
【实例截图】
【核心代码】
C网络通信程序设计
└── 38988
├── PPT汇总v1.0-20151204ok
│ ├── P10 Email服务程序设计.ppt
│ ├── P11 FTP服务程序设计.ppt
│ ├── P12 网络测量程序设计.ppt
│ ├── P13 网络信息加密传输程序设计.ppt
│ ├── P14 网络信息隐藏通信程序设计.ppt
│ ├── P1 绪论-20151202.ppt
│ ├── P2 主机扫描程序设计.ppt
│ ├── P3 C#串口通信程序设计.ppt
│ ├── P4 基于TCP协议的程序设计.ppt
│ ├── P5 基于UDP协议的程序设计.ppt
│ ├── P6 远程屏幕监视程序设计.ppt
│ ├── P7 木马程序设计.ppt
│ ├── P8 IP语音网络通信程序设计.ppt
│ └── P9 网络视频传输程序设计.ppt
├── 程序发布v1.0--20160301
│ ├── S10 Email服务程序设计
│ │ ├── Ex10.2.4-ESMTP
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── ESMTP.csproj
│ │ │ ├── ESMTP.csproj.user
│ │ │ ├── ESMTP.sln
│ │ │ ├── ESMTP.suo
│ │ │ ├── Form1.cs
│ │ │ └── Form1.resx
│ │ └── Ex10.3.2-POP3
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── POP3EmailProgram.csproj
│ │ ├── POP3EmailProgram.csproj.user
│ │ ├── POP3EmailProgram.sln
│ │ └── POP3EmailProgram.suo
│ ├── S11 FTP服务程序设计
│ │ └── Ex11.5-TcpClientforFTP
│ │ ├── Client
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Client.csproj
│ │ │ ├── Client.csproj.user
│ │ │ ├── Client.sln
│ │ │ ├── Client.suo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ └── UpgradeLog.XML
│ │ └── Server
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Server.csproj
│ │ ├── Server.csproj.user
│ │ ├── Server.sln
│ │ └── Server.suo
│ ├── S13 网络信息加密传输程序设计
│ │ ├── Ex13.2.3-SymmetricRijndael
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── SymmetricRijndael.csproj
│ │ │ ├── SymmetricRijndael.csproj.user
│ │ │ ├── SymmetricRijndael.sln
│ │ │ └── SymmetricRijndael.suo
│ │ └── Ex13.3-RSA
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── PA.txt
│ │ ├── RSADataCryptor.csproj
│ │ ├── RSADataCryptor.csproj.user
│ │ ├── RSADataCryptor.sln
│ │ ├── RSADataCryptor.suo
│ │ ├── SA.txt
│ │ ├── test2.txt
│ │ └── test.txt
│ ├── S1 绪论源程序
│ │ ├── Ex1.3.2-localIPEndPoint
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Class1.cs
│ │ │ ├── localIPEndPoint.csproj
│ │ │ ├── localIPEndPoint.csproj.user
│ │ │ ├── localIPEndPoint.sln
│ │ │ └── localIPEndPoint.suo
│ │ ├── Ex1.3.4-multiThreads
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Class1.cs
│ │ │ ├── multiThreads.csproj
│ │ │ ├── multiThreads.csproj.user
│ │ │ ├── multiThreads.sln
│ │ │ └── multiThreads.suo
│ │ └── Ex1.4.4-simpleUdp
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── simpleUdp.vshost.exe
│ │ ├── Class1.cs
│ │ ├── simpleUdp.csproj
│ │ ├── simpleUdp.csproj.user
│ │ ├── simpleUdp.exe
│ │ ├── simpleUdp.sln
│ │ └── simpleUdp.suo
│ ├── S2 主机扫描程序设计源程序
│ │ ├── Ex2.1.3-pingProgram
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── pingProgram.csproj
│ │ │ ├── pingProgram.csproj.user
│ │ │ ├── pingProgram.sln
│ │ │ ├── pingProgram.suo
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Ex2.3.1-MultiThreadPortScanbyTCPConnect
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── MultiThreadScanTCPConnect.csproj
│ │ │ ├── MultiThreadScanTCPConnect.csproj.user
│ │ │ ├── MultiThreadScanTCPConnect.sln
│ │ │ └── MultiThreadScanTCPConnect.suo
│ │ └── Ex2.3.1-NormalPortScanbyTCPConnect
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── NormalScanbyTCPConnect.csproj
│ │ ├── NormalScanbyTCPConnect.csproj.user
│ │ ├── NormalScanbyTCPConnect.sln
│ │ └── NormalScanbyTCPConnect.suo
│ ├── S3程序和软件工具
│ │ └── P3.3 C#SerialPort
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── RS232Comm.exe
│ │ │ ├── RS232Comm.pdb
│ │ │ ├── RS232Comm.vshost.exe
│ │ │ ├── RS232Comm.vshost.exe.manifest
│ │ │ ├── 串口通信.exe
│ │ │ └── 串口通信.pdb
│ │ ├── bipt.ico
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── RS232Comm.ComSet.resources
│ │ │ ├── RS232Comm.csproj.FileListAbsolute.txt
│ │ │ ├── RS232Comm.exe
│ │ │ ├── RS232Comm.MainForm.resources
│ │ │ ├── RS232Comm.pdb
│ │ │ ├── RS232Comm.Properties.Resources.resources
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── 串口通信.ComSet.resources
│ │ │ ├── 串口通信.csproj.FileListAbsolute.txt
│ │ │ ├── 串口通信.csproj.GenerateResource.Cache
│ │ │ ├── 串口通信.csprojResolveAssemblyReference.cache
│ │ │ ├── 串口通信.Form1.resources
│ │ │ ├── 串口通信.Form2.resources
│ │ │ └── 串口通信.Properties.Resources.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── RS232Comm.csproj
│ │ ├── RS232.sln
│ │ ├── RS232.suo
│ │ ├── SPSet.cs
│ │ ├── SPSet.Designer.cs
│ │ ├── SPSet.resx
│ │ ├── 串口通信.sln
│ │ └── 串口通信.suo
│ ├── S4 基于TCP协议的程序设计源程序
│ │ ├── Ex4.3-SyncSocket
│ │ │ ├── SyncSocketClient
│ │ │ │ ├── App.ico
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── SyncSocketClient.csproj
│ │ │ │ ├── SyncSocketClient.csproj.user
│ │ │ │ ├── SyncSocketClient.sln
│ │ │ │ └── SyncSocketClient.suo
│ │ │ └── SyncSocketServer
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── ClassDiagram1.cd
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Properties
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── SyncSocketServer.csproj
│ │ │ ├── SyncSocketServer.csproj.user
│ │ │ ├── SyncSocketServer.sln
│ │ │ └── SyncSocketServer.suo
│ │ └── Ex4.4-AsyncSocket
│ │ ├── AsyncSocketClient
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── AsyncSocketClient.csproj
│ │ │ ├── AsyncSocketClient.csproj.user
│ │ │ ├── AsyncSocketClient.sln
│ │ │ ├── AsyncSocketClient.suo
│ │ │ ├── Form1.cs
│ │ │ └── Form1.resx
│ │ └── AsyncSocketServer
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── AsyncSocketServer.csproj
│ │ ├── AsyncSocketServer.csproj.user
│ │ ├── AsyncSocketServer.sln
│ │ ├── AsyncSocketServer.suo
│ │ ├── Form1.cs
│ │ └── Form1.resx
│ ├── S5 基于UDP协议的程序设计
│ │ └── Ex5.2.2-UdpClientServer
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── UdpClientServer.vshost.exe
│ │ ├── Class1.cs
│ │ ├── UdpClientServer.csproj
│ │ ├── UdpClientServer.csproj.user
│ │ ├── UdpClientServer.sln
│ │ └── UdpClientServer.suo
│ ├── S6 远程屏幕监视程序设计
│ │ ├── Ex6.2-FormCapture
│ │ │ ├── FormCapture
│ │ │ │ ├── App.ico
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── bin
│ │ │ │ │ ├── Captured.jpg
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── FormCapture.exe
│ │ │ │ │ ├── FormCapture.pdb
│ │ │ │ │ └── FormCapture.vshost.exe
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── FormCapture.csproj
│ │ │ │ ├── FormCapture.csproj.user
│ │ │ │ └── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── FormCapture.csproj.GenerateResource.Cache
│ │ │ │ │ ├── FormCapture.exe
│ │ │ │ │ ├── FormCapture.Form1.resources
│ │ │ │ │ └── FormCapture.pdb
│ │ │ │ └── FormCapture.csproj.FileList.txt
│ │ │ ├── FormCapture.sln
│ │ │ └── FormCapture.suo
│ │ └── Ex6.4-TCPRemoteMonitor
│ │ ├── TCPMonitorCapture
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TCPMonitorCapture.csproj
│ │ │ ├── TCPMonitorCapture.sln
│ │ │ └── TCPMonitorCapture.suo
│ │ └── TCPMonitorServer
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TCPMonitorServer.csproj
│ │ ├── TCPMonitorServer.sln
│ │ └── TCPMonitorServer.suo
│ ├── S7 木马程序设计
│ │ └── Ex7.2-NormalTrojanHorse
│ │ ├── Client
│ │ │ ├── Backup
│ │ │ │ ├── Client
│ │ │ │ │ ├── Client.csproj
│ │ │ │ │ ├── Form1.cs
│ │ │ │ │ ├── Form1.Designer.cs
│ │ │ │ │ ├── Form1.resx
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ └── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Client.sln
│ │ │ │ └── Client.suo
│ │ │ ├── Client
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── Client.exe
│ │ │ │ │ ├── Client.pdb
│ │ │ │ │ ├── Client.vshost.exe
│ │ │ │ │ └── Client.vshost.exe.manifest
│ │ │ │ ├── Client.csproj
│ │ │ │ ├── Client.csproj.user
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form2.resx
│ │ │ │ ├── Form3.cs
│ │ │ │ ├── Form3.Designer.cs
│ │ │ │ ├── Form3.resx
│ │ │ │ ├── log
│ │ │ │ │ ├── 1212.txt
│ │ │ │ │ ├── 2323.txt
│ │ │ │ │ ├── 56655.txt
│ │ │ │ │ ├── 复件 (2) 新建 文本文档.txt
│ │ │ │ │ ├── 复件 (3) 新建 文本文档.txt
│ │ │ │ │ ├── 复件 (4) 新建 文本文档.txt
│ │ │ │ │ ├── 复件 新建 文本文档.txt
│ │ │ │ │ └── 新建 文本文档.txt
│ │ │ │ ├── obj
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── Client.csproj.FileListAbsolute.txt
│ │ │ │ │ ├── Client.exe
│ │ │ │ │ ├── Client.Form1.resources
│ │ │ │ │ ├── Client.Form2.resources
│ │ │ │ │ ├── Client.Form3.resources
│ │ │ │ │ ├── Client.pdb
│ │ │ │ │ ├── Client.Properties.Resources.resources
│ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ │ └── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── picts
│ │ │ │ │ ├── down.bmp
│ │ │ │ │ ├── folder.png
│ │ │ │ │ ├── F.png
│ │ │ │ │ ├── Lime100.png
│ │ │ │ │ ├── open33.png
│ │ │ │ │ ├── openfolder.png
│ │ │ │ │ ├── run5.PNG
│ │ │ │ │ ├── run7.PNG
│ │ │ │ │ ├── run.png
│ │ │ │ │ ├── saomiao.png
│ │ │ │ │ ├── save.PNG
│ │ │ │ │ ├── stop2.PNG
│ │ │ │ │ ├── stop.png
│ │ │ │ │ ├── tb-002.jpg
│ │ │ │ │ ├── up2.bmp
│ │ │ │ │ ├── up3.bmp
│ │ │ │ │ ├── up4.bmp
│ │ │ │ │ └── up.bmp
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Client.sln
│ │ │ ├── Client.suo
│ │ │ ├── UpgradeLog.XML
│ │ │ └── _UpgradeReport_Files
│ │ │ ├── UpgradeReport.css
│ │ │ ├── UpgradeReport_Minus.gif
│ │ │ ├── UpgradeReport_Plus.gif
│ │ │ └── UpgradeReport.xslt
│ │ └── Server
│ │ ├── Backup
│ │ │ ├── Server
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Server.csproj
│ │ │ ├── Server.sln
│ │ │ └── Server.suo
│ │ ├── Server
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Server.exe
│ │ │ │ ├── Server.pdb
│ │ │ │ ├── Server.vshost.exe
│ │ │ │ └── Server.vshost.exe.manifest
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── Server.csproj.FileListAbsolute.txt
│ │ │ │ ├── Server.exe
│ │ │ │ ├── Server.Form1.resources
│ │ │ │ ├── Server.pdb
│ │ │ │ ├── Server.Properties.Resources.resources
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Server.csproj
│ │ ├── Server.sln
│ │ ├── Server.suo
│ │ ├── UpgradeLog.XML
│ │ └── _UpgradeReport_Files
│ │ ├── UpgradeReport.css
│ │ ├── UpgradeReport_Minus.gif
│ │ ├── UpgradeReport_Plus.gif
│ │ └── UpgradeReport.xslt
│ ├── S8 IP音频通信程序设计
│ │ ├── Ex8.4.1-directxPlay
│ │ │ ├── directxPlay
│ │ │ │ ├── directxPlay.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── topoftheWorld.wav
│ │ │ ├── directxPlay.sln
│ │ │ └── directxPlay.suo
│ │ ├── Ex8.4.3-directxChat
│ │ │ ├── chat
│ │ │ │ ├── chat.csproj
│ │ │ │ ├── CircularBuffer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form2.resx
│ │ │ │ ├── Form3.cs
│ │ │ │ ├── Form3.Designer.cs
│ │ │ │ ├── Form3.resx
│ │ │ │ ├── Form4.cs
│ │ │ │ ├── Form4.Designer.cs
│ │ │ │ ├── Form4.resx
│ │ │ │ ├── Form5.cs
│ │ │ │ ├── Form5.Designer.cs
│ │ │ │ ├── Form5.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── SoundPlayer.cs
│ │ │ │ ├── SoundRecord.cs
│ │ │ │ └── User.cs
│ │ │ ├── chat.sln
│ │ │ └── chat.suo
│ │ └── Ex8.5.2-audioCapture
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── audioCapture.csproj
│ │ ├── audioCapture.csproj.user
│ │ ├── audioCapture.sln
│ │ ├── audioCapture.suo
│ │ ├── AudioDevice.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Mixer.cs
│ │ ├── MultimediaException.cs
│ │ ├── utiilities.cs
│ │ ├── WaveBufferEventHandler.cs
│ │ ├── WaveIn.cs
│ │ └── WaveOut.cs
│ └── S9 视频监测程序
│ └── 9.2 VideoMonitoring
│ ├── bin
│ │ └── Debug
│ │ ├── VideoMonitoring.exe
│ │ ├── VideoMonitoring.pdb
│ │ ├── VideoMonitoring.vshost.exe
│ │ └── VideoMonitoring.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Form2.cs
│ ├── Form2.Designer.cs
│ ├── Form2.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── VideoMonitoring.csproj.FileListAbsolute.txt
│ │ ├── VideoMonitoring.exe
│ │ ├── VideoMonitoring.Form1.resources
│ │ ├── VideoMonitoring.Form2.resources
│ │ ├── VideoMonitoring.pdb
│ │ ├── VideoMonitoring.Properties.Resources.resources
│ │ ├── WebCamClient.csproj.FileListAbsolute.txt
│ │ └── WebCamClient.Form1.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── VideoMonitoring.csproj
│ ├── VideoMonitoring.sln
│ ├── VideoMonitoring.suo
│ ├── WebCamClient.suo
│ └── webcam.cs
├── 计算机教师交流群及公众号介绍.doc
└── 说明.txt
102 directories, 452 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论