【例子介绍】C#条形码生成和扫描
内有Barcode和Fath BarcodeImaging源码 BarcodeImaging因为有不安全代码unsafe 项目不允许编译不安全代码的话请用里面带的BarcodeImaging.dll 内有测试程序
【相关图片】
【源码结构】
文件清单
└── test18
├── test18
│ ├── Barcode
│ │ ├── cBarCode.cs
│ │ └── cPrint.cs
│ ├── BarcodeImaging.dll
│ ├── bin
│ │ ├── Debug
│ │ │ ├── test18.exe
│ │ │ ├── test18.pdb
│ │ │ ├── test18.vshost.exe
│ │ │ └── test18.vshost.exe.manifest
│ │ └── Release
│ ├── clsBarcodeImaging.cs
│ ├── Fath
│ │ ├── BarcodeX.cs
│ │ ├── bcType.cs
│ │ └── CBarcodeX.cs
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── test18.csproj.FileListAbsolute.txt
│ │ ├── test18.exe
│ │ ├── test18.Form1.resources
│ │ ├── test18.pdb
│ │ └── test18.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── test18.csproj
│ └── test18.csproj.user
├── test18.sln
└── test18.suo
12 directories, 34 files
评论