【例子介绍】C#读写欧姆龙PLC(Fins-TCP/UDP)
【相关图片】
【源码结构】
.
├── C#读写欧姆龙PLC(Fins-TCPUDP).7z
└── ConnectOmronPlc_Demo
├── ConnectOmronPlc_Demo
│ ├── App.config
│ ├── ConnectOmronPlc_Demo.csproj
│ ├── DemoUtils.cs
│ ├── Form1.Designer.cs
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── OmromPlcHelper.cs
│ ├── OmromPlc_UDP.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── SelectPage.Designer.cs
│ ├── SelectPage.cs
│ ├── SelectPage.resx
│ ├── UPD.Designer.cs
│ ├── UPD.cs
│ ├── UPD.resx
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ConnectOmronPlc_Demo.exe
│ │ │ ├── ConnectOmronPlc_Demo.exe.config
│ │ │ ├── ConnectOmronPlc_Demo.pdb
│ │ │ ├── HslCommunication.dll
│ │ │ ├── HslCommunication.xml
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── Debug.7z
│ │ └── Release
│ ├── obj
│ │ └── Debug
│ │ ├── ConnectOmronPlc_Demo.Form1.resources
│ │ ├── ConnectOmronPlc_Demo.Properties.Resources.resources
│ │ ├── ConnectOmronPlc_Demo.SelectPage.resources
│ │ ├── ConnectOmronPlc_Demo.UPD.resources
│ │ ├── ConnectOmronPlc_Demo.csproj.AssemblyReference.cache
│ │ ├── ConnectOmronPlc_Demo.csproj.CopyComplete
│ │ ├── ConnectOmronPlc_Demo.csproj.CoreCompileInputs.cache
│ │ ├── ConnectOmronPlc_Demo.csproj.FileListAbsolute.txt
│ │ ├── ConnectOmronPlc_Demo.csproj.GenerateResource.cache
│ │ ├── ConnectOmronPlc_Demo.csproj.SuggestedBindingRedirects.cache
│ │ ├── ConnectOmronPlc_Demo.exe
│ │ ├── ConnectOmronPlc_Demo.exe.config
│ │ ├── ConnectOmronPlc_Demo.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ └── packages.config
├── ConnectOmronPlc_Demo.sln
└── packages
├── HslCommunication.11.5.2
│ ├── HslCommunication.11.5.2.nupkg
│ └── lib
│ ├── net20
│ │ ├── HslCommunication.dll
│ │ └── HslCommunication.xml
│ ├── net35
│ │ ├── HslCommunication.dll
│ │ └── HslCommunication.xml
│ ├── net451
│ │ ├── HslCommunication.dll
│ │ └── HslCommunication.xml
│ ├── netstandard2.0
│ │ ├── HslCommunication.dll
│ │ └── HslCommunication.xml
│ └── netstandard2.1
│ ├── HslCommunication.dll
│ └── HslCommunication.xml
└── Newtonsoft.Json.13.0.1
├── LICENSE.md
├── Newtonsoft.Json.13.0.1.nupkg
├── lib
│ ├── net20
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net35
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net40
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net45
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── netstandard1.0
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── netstandard1.3
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── netstandard2.0
│ ├── Newtonsoft.Json.dll
│ └── Newtonsoft.Json.xml
└── packageIcon.png
26 directories, 74 files
评论