C# UDP通讯 跟某厂家RFID设备通讯示例公司做的跟RFID 设备UDP通讯 .
├── C# UDP通讯 跟某厂家RFID设备通讯示例.rar
└── Storage
├── IntelligentStorage
│ ├── BLL
│ │ ├── BLL.csproj
│ │ ├── OperatorFile.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BLL.dll
│ │ │ │ ├── BLL.pdb
│ │ │ │ ├── DAL.dll
│ │ │ │ ├── DAL.pdb
│ │ │ │ ├── Helper.dll
│ │ │ │ ├── Helper.pdb
│ │ │ │ ├── Model_ZMRFID.dll
│ │ │ │ └── Model_ZMRFID.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── BLL.csproj.AssemblyReference.cache
│ │ ├── BLL.csproj.CopyComplete
│ │ ├── BLL.csproj.CoreCompileInputs.cache
│ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ ├── BLL.dll
│ │ ├── BLL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── Cache
│ │ └── Userinfo
│ ├── DAL
│ │ ├── ConfigFile.cs
│ │ ├── DAL.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PublicStatic.cs
│ │ ├── SaveInfor.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── DAL.dll
│ │ │ │ ├── DAL.pdb
│ │ │ │ ├── Helper.dll
│ │ │ │ ├── Helper.pdb
│ │ │ │ ├── Model_ZMRFID.dll
│ │ │ │ └── Model_ZMRFID.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DAL.csproj.AssemblyReference.cache
│ │ ├── DAL.csproj.CopyComplete
│ │ ├── DAL.csproj.CoreCompileInputs.cache
│ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ ├── DAL.dll
│ │ ├── DAL.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── TempPE
│ ├── Helper
│ │ ├── FileHelper.cs
│ │ ├── Helper.csproj
│ │ ├── LogMessage.cs
│ │ ├── MyUDP.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Helper.dll
│ │ │ │ ├── Helper.pdb
│ │ │ │ ├── Model_ZMRFID.dll
│ │ │ │ └── Model_ZMRFID.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Helper.csproj.AssemblyReference.cache
│ │ ├── Helper.csproj.CopyComplete
│ │ ├── Helper.csproj.CoreCompileInputs.cache
│ │ ├── Helper.csproj.FileListAbsolute.txt
│ │ ├── Helper.dll
│ │ ├── Helper.pdb
│ │ └── TempPE
│ ├── IntelligentStorage
│ │ ├── App.config
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.resx
│ │ ├── Frm_UDPDevice_Manage.Designer.cs
│ │ ├── Frm_UDPDevice_Manage.cs
│ │ ├── Frm_UDPDevice_Manage.resx
│ │ ├── IntelligentStorage.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── BLL.dll
│ │ │ │ ├── BLL.pdb
│ │ │ │ ├── Cache
│ │ │ │ │ └── Userinfo
│ │ │ │ ├── DAL.dll
│ │ │ │ ├── DAL.pdb
│ │ │ │ ├── Helper.dll
│ │ │ │ ├── Helper.pdb
│ │ │ │ ├── IntelligentStorage.exe
│ │ │ │ ├── IntelligentStorage.exe.config
│ │ │ │ ├── IntelligentStorage.pdb
│ │ │ │ ├── Log
│ │ │ │ │ └── 通讯报文
│ │ │ │ │ └── 2022-04-01.txt
│ │ │ │ ├── Model_ZMRFID.dll
│ │ │ │ ├── Model_ZMRFID.pdb
│ │ │ │ ├── UI.dll
│ │ │ │ └── UI.pdb
│ │ │ └── Release
│ │ ├── guizi.ico
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── IntelligentStorage.Frm_Main.resources
│ │ ├── IntelligentStorage.Frm_UDPDevice_Manage.resources
│ │ ├── IntelligentStorage.Properties.Resources.resources
│ │ ├── IntelligentStorage.csproj.AssemblyReference.cache
│ │ ├── IntelligentStorage.csproj.CopyComplete
│ │ ├── IntelligentStorage.csproj.CoreCompileInputs.cache
│ │ ├── IntelligentStorage.csproj.FileListAbsolute.txt
│ │ ├── IntelligentStorage.csproj.GenerateResource.cache
│ │ ├── IntelligentStorage.exe
│ │ ├── IntelligentStorage.pdb
│ │ └── TempPE
│ ├── IntelligentStorage.sln
│ ├── Model_ZMRFID
│ │ ├── EPC.cs
│ │ ├── Frame_Base.cs
│ │ ├── Frame_CMD_R_0x10.cs
│ │ ├── Frame_CMD_R_0x55.cs
│ │ ├── Frame_CMD_R_0x72.cs
│ │ ├── Frame_CMD_R_0x73.cs
│ │ ├── Frame_CMD_R_0x74.cs
│ │ ├── Frame_CMD_R_0x81.cs
│ │ ├── Frame_CMD_R_0x82.cs
│ │ ├── Model_ZMRFID.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RFID_UserInfo.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Model_ZMRFID.dll
│ │ │ │ └── Model_ZMRFID.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Model_ZMRFID.csproj.AssemblyReference.cache
│ │ ├── Model_ZMRFID.csproj.CoreCompileInputs.cache
│ │ ├── Model_ZMRFID.csproj.FileListAbsolute.txt
│ │ ├── Model_ZMRFID.dll
│ │ ├── Model_ZMRFID.pdb
│ │ └── TempPE
│ ├── Models_Storage
│ │ ├── JieXiFrame.cs
│ │ ├── MakeFrame.cs
│ │ ├── Models_Storage.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── PublicStatic_Storage.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Models_Storage.dll
│ │ │ │ └── Models_Storage.pdb
│ │ │ └── Release
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Models_Storage.csproj.AssemblyReference.cache
│ │ ├── Models_Storage.csproj.CoreCompileInputs.cache
│ │ ├── Models_Storage.csproj.FileListAbsolute.txt
│ │ ├── Models_Storage.dll
│ │ ├── Models_Storage.pdb
│ │ └── TempPE
│ └── UI
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── UI.csproj
│ ├── ZMRFID_Info
│ │ ├── RFID_Device_Debug.Designer.cs
│ │ ├── RFID_Device_Debug.cs
│ │ ├── RFID_Device_Debug.resx
│ │ ├── RFID_Device_Manager.Designer.cs
│ │ ├── RFID_Device_Manager.cs
│ │ ├── RFID_Device_Manager.resx
│ │ ├── RFID_Device_Scan.Designer.cs
│ │ ├── RFID_Device_Scan.cs
│ │ └── RFID_Device_Scan.resx
│ ├── bin
│ │ ├── Debug
│ │ │ ├── BLL.dll
│ │ │ ├── BLL.pdb
│ │ │ ├── DAL.dll
│ │ │ ├── DAL.pdb
│ │ │ ├── Helper.dll
│ │ │ ├── Helper.pdb
│ │ │ ├── Model_ZMRFID.dll
│ │ │ ├── Model_ZMRFID.pdb
│ │ │ ├── UI.dll
│ │ │ └── UI.pdb
│ │ └── Release
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── UI.RFID_Device_Debug.resources
│ ├── UI.RFID_Device_Manager.resources
│ ├── UI.RFID_Device_Scan.resources
│ ├── UI.csproj.AssemblyReference.cache
│ ├── UI.csproj.CopyComplete
│ ├── UI.csproj.CoreCompileInputs.cache
│ ├── UI.csproj.FileListAbsolute.txt
│ ├── UI.csproj.GenerateResource.cache
│ ├── UI.dll
│ └── UI.pdb
└── 资料
├── ~$智能存储.mmap.~$lock
├── 报文
│ ├── 标贴上报.txt
│ └── 新建文本文档.txt
├── 草稿.txt
├── 智能存储.lnk
├── 数据库工具.txt
├── 数据库设计.xlsx
└── 思维导图及流程图
├── 智能存储.mmap
├── 人员信息.xlsx
└── 借还工具流程.mmap
66 directories, 173 files
评论