在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#经典范例50讲.rar

C#经典范例50讲.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.02M
  • 下载次数:1
  • 浏览次数:47
  • 发布时间:2021-12-08
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
很不错的C#源码,实用,分也不多. using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace NoticePad { /// /// 定时提醒的小工具。 /// public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Timer timer1; private System.Windows.Forms.NumericUpDown ndHour; private System.Windows.Forms.NumericUpDown ndMinute; private System.Windows.Forms.Button btn_OK; private System.ComponentModel.IContainer components; public Form1() { // // Windows 窗体设计器支持所必需的 // InitializeComponent(); // // TODO: 在 InitializeComponent 调用后添加任何构造函数代码 // } /// /// 清理所有正在使用的资源。 /// protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ndHour = new System.Windows.Forms.NumericUpDown(); this.ndMinute = new System.Windows.Forms.NumericUpDown(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.btn_OK = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.ndHour)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ndMinute)).BeginInit(); this.SuspendLayout(); // // ndHour // this.ndHour.Location = new System.Drawing.Point(8, 8); this.ndHour.Maximum = new System.Decimal(new int[] {
【实例截图】
【核心代码】
4744302542886279170.rar
└── 经典范例50讲
├── aspxz.cn.txt
├── ASP源码网--更多免费精品源码.url
├── hope.ico
├── ico-arrow.gif
├── readme.txt
├── 实例01
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Backup
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── ChMenu.csproj
│   │   ├── ChMenu.csproj.user
│   │   ├── ChMenu.sln
│   │   ├── ChMenu.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── bin
│   │   └── Debug
│   │   ├── ChMenu.exe
│   │   ├── ChMenu.pdb
│   │   └── ChMenu.vshost.exe
│   ├── ChMenu.csproj
│   ├── ChMenu.csproj.user
│   ├── ChMenu.sln
│   ├── ChMenu.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   ├── ChMenu.csproj.FileList.txt
│   │   └── Debug
│   │   ├── ChMenu.csproj.GenerateResource.Cache
│   │   ├── ChMenu.exe
│   │   ├── ChMenu.exe.incr
│   │   ├── ChMenu.Form1.resources
│   │   ├── ChMenu.pdb
│   │   ├── ChMenu.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例02
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Backup
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── DMenu.csproj
│   │   ├── DMenu.csproj.user
│   │   ├── DMenu.sln
│   │   ├── DMenu.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── bin
│   │   ├── Debug
│   │   │   ├── DMenu.exe
│   │   │   ├── DMenu.pdb
│   │   │   └── DMenu.vshost.exe
│   │   └── Release
│   ├── DMenu.csproj
│   ├── DMenu.csproj.user
│   ├── DMenu.sln
│   ├── DMenu.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── DMenu.csproj.FileListAbsolute.txt
│   │   │   ├── DMenu.csproj.GenerateResource.Cache
│   │   │   ├── DMenu.DMenuForm.resources
│   │   │   ├── DMenu.exe
│   │   │   ├── DMenu.exe.incr
│   │   │   ├── DMenu.pdb
│   │   │   ├── DMenu.projdata
│   │   │   ├── temp
│   │   │   └── TempPE
│   │   └── DMenu.csproj.FileList.txt
│   ├── UpgradeLog2.XML
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例03
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── NoticePad.exe
│   │   └── NoticePad.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── NoticePad.csproj
│   ├── NoticePad.csproj.user
│   ├── NoticePad.sln
│   ├── NoticePad.suo
│   └── obj
│   └── Debug
│   ├── NoticePad.exe
│   ├── NoticePad.exe.incr
│   ├── NoticePad.Form1.resources
│   ├── NoticePad.pdb
│   ├── NoticePad.projdata
│   ├── temp
│   └── TempPE
├── 实例04
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── Backup
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── Calc.csproj
│   │   ├── Calc.csproj.user
│   │   ├── Calc.sln
│   │   ├── Calc.suo
│   │   ├── Form1.cs
│   │   └── Form1.resx
│   ├── bin
│   │   ├── Debug
│   │   │   ├── Calc.exe
│   │   │   ├── Calc.pdb
│   │   │   └── Calc.vshost.exe
│   │   └── Release
│   ├── Calc.csproj
│   ├── Calc.csproj.user
│   ├── Calc.sln
│   ├── Calc.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── Calc.CalcForm.resources
│   │   ├── Calc.csproj.FileListAbsolute.txt
│   │   ├── Calc.exe
│   │   ├── Calc.exe.incr
│   │   ├── Calc.pdb
│   │   ├── Calc.projdata
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── temp
│   │   └── TempPE
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例05
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── NotePad.exe
│   │   └── NotePad.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── NotePad.csproj
│   ├── NotePad.csproj.user
│   ├── NotePad.sln
│   ├── NotePad.suo
│   └── obj
│   └── Debug
│   ├── NotePad.exe
│   ├── NotePad.exe.incr
│   ├── NotePad.Form1.resources
│   ├── NotePad.pdb
│   ├── NotePad.projdata
│   ├── temp
│   └── TempPE
├── 实例06
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── BinaryFile.exe
│   │   ├── BinaryFile.pdb
│   │   └── test.bin
│   ├── BinaryFile.csproj
│   ├── BinaryFile.csproj.user
│   ├── BinaryFile.sln
│   ├── BinaryFile.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── BinaryFile.exe
│   ├── BinaryFile.exe.incr
│   ├── BinaryFile.Form1.resources
│   ├── BinaryFile.pdb
│   ├── BinaryFile.projdata
│   ├── temp
│   └── TempPE
├── 实例07
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── TextFile.exe
│   │   └── TextFile.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── temp
│   │   ├── TempPE
│   │   ├── TextFile.exe
│   │   ├── TextFile.exe.incr
│   │   ├── TextFile.Form1.resources
│   │   ├── TextFile.pdb
│   │   └── TextFile.projdata
│   ├── TextFile.csproj
│   ├── TextFile.csproj.user
│   ├── TextFile.sln
│   └── TextFile.suo
├── 实例08
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── FileView.exe
│   │   └── FileView.pdb
│   ├── FileView.csproj
│   ├── FileView.csproj.user
│   ├── FileView.sln
│   ├── FileView.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── FileView.exe
│   ├── FileView.exe.incr
│   ├── FileView.Form1.resources
│   ├── FileView.pdb
│   ├── FileView.projdata
│   ├── temp
│   └── TempPE
├── 实例09
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── PrintDoc.exe
│   │   └── PrintDoc.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── PrintDoc.exe
│   │   ├── PrintDoc.exe.incr
│   │   ├── PrintDoc.Form1.resources
│   │   ├── PrintDoc.pdb
│   │   ├── PrintDoc.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── PrintDoc.csproj
│   ├── PrintDoc.csproj.user
│   ├── PrintDoc.sln
│   └── PrintDoc.suo
├── 实例10
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── MultiThread.exe
│   │   └── MultiThread.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── MultiThread.csproj
│   ├── MultiThread.csproj.user
│   ├── MultiThread.sln
│   ├── MultiThread.suo
│   └── obj
│   └── Debug
│   ├── MultiThread.exe
│   ├── MultiThread.exe.incr
│   ├── MultiThread.Form1.resources
│   ├── MultiThread.pdb
│   ├── MultiThread.projdata
│   ├── temp
│   └── TempPE
├── 实例11
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadSync.exe
│   │   └── ThreadSync.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── temp
│   │   ├── TempPE
│   │   ├── ThreadSync.exe
│   │   ├── ThreadSync.exe.incr
│   │   ├── ThreadSync.Form1.resources
│   │   ├── ThreadSync.pdb
│   │   └── ThreadSync.projdata
│   ├── ThreadSync.csproj
│   ├── ThreadSync.csproj.user
│   ├── ThreadSync.sln
│   └── ThreadSync.suo
├── 实例12
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadMutex.exe
│   │   └── ThreadMutex.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── temp
│   │   ├── TempPE
│   │   ├── ThreadMutex.exe
│   │   ├── ThreadMutex.exe.incr
│   │   ├── ThreadMutex.Form1.resources
│   │   ├── ThreadMutex.pdb
│   │   └── ThreadMutex.projdata
│   ├── ThreadMutex.csproj
│   ├── ThreadMutex.csproj.user
│   ├── ThreadMutex.sln
│   └── ThreadMutex.suo
├── 实例13
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadMutex2.exe
│   │   └── ThreadMutex2.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── temp
│   │   ├── TempPE
│   │   ├── ThreadMutex2.exe
│   │   ├── ThreadMutex2.exe.incr
│   │   ├── ThreadMutex2.Form1.resources
│   │   ├── ThreadMutex2.pdb
│   │   └── ThreadMutex2.projdata
│   ├── ThreadMutex2.csproj
│   ├── ThreadMutex2.csproj.user
│   ├── ThreadMutex2.sln
│   └── ThreadMutex2.suo
├── 实例14
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadMutex3.exe
│   │   └── ThreadMutex3.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── temp
│   │   ├── TempPE
│   │   ├── ThreadMutex3.exe
│   │   ├── ThreadMutex3.exe.incr
│   │   ├── ThreadMutex3.Form1.resources
│   │   ├── ThreadMutex3.pdb
│   │   └── ThreadMutex3.projdata
│   ├── ThreadMutex3.csproj
│   ├── ThreadMutex3.csproj.user
│   ├── ThreadMutex3.sln
│   └── ThreadMutex3.suo
├── 实例15
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DataBase1.exe
│   │   ├── DataBase1.pdb
│   │   └── test.mdb
│   ├── DataBase1.csproj
│   ├── DataBase1.csproj.user
│   ├── DataBase1.sln
│   ├── DataBase1.suo
│   ├── DataSet1.cs
│   ├── DataSet1.xsd
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── DataBase1.exe
│   ├── DataBase1.exe.incr
│   ├── DataBase1.Form1.resources
│   ├── DataBase1.pdb
│   ├── DataBase1.projdata
│   ├── temp
│   └── TempPE
│   └── DataSet1.cs.dll
├── 实例16
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DataBase3.exe
│   │   ├── DataBase3.pdb
│   │   └── test.mdb
│   ├── DataBase3.csproj
│   ├── DataBase3.csproj.user
│   ├── DataBase3.sln
│   ├── DataBase3.suo
│   ├── DataSet1.cs
│   ├── DataSet1.xsd
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── DataBase3.exe
│   ├── DataBase3.exe.incr
│   ├── DataBase3.Form1.resources
│   ├── DataBase3.pdb
│   ├── DataBase3.projdata
│   ├── temp
│   └── TempPE
│   └── DataSet1.cs.dll
├── 实例17
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DataBase2.exe
│   │   ├── DataBase2.pdb
│   │   └── test.mdb
│   ├── DataBase2.csproj
│   ├── DataBase2.csproj.user
│   ├── DataBase2.sln
│   ├── DataBase2.suo
│   ├── DataSet1.cs
│   ├── DataSet1.xsd
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── DataBase2.exe
│   ├── DataBase2.exe.incr
│   ├── DataBase2.Form1.resources
│   ├── DataBase2.pdb
│   ├── DataBase2.projdata
│   ├── temp
│   └── TempPE
│   └── DataSet1.cs.dll
├── 实例18
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DataBase4.exe
│   │   ├── DataBase4.pdb
│   │   └── test.mdb
│   ├── DataBase4.csproj
│   ├── DataBase4.csproj.user
│   ├── DataBase4.sln
│   ├── DataBase4.suo
│   ├── DataSet1.cs
│   ├── DataSet1.xsd
│   ├── DataSet1.xsx
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── DataBase4.exe
│   ├── DataBase4.exe.incr
│   ├── DataBase4.Form1.resources
│   ├── DataBase4.pdb
│   ├── DataBase4.projdata
│   ├── temp
│   └── TempPE
│   └── DataSet1.cs.dll
├── 实例19
│   ├── address.xml
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── address.xml
│   │   ├── ReadingXML.exe
│   │   └── ReadingXML.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── ReadingXML.exe
│   │   ├── ReadingXML.exe.incr
│   │   ├── ReadingXML.Form1.resources
│   │   ├── ReadingXML.pdb
│   │   ├── ReadingXML.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── ReadingXML.csproj
│   ├── ReadingXML.csproj.user
│   ├── ReadingXML.sln
│   └── ReadingXML.suo
├── 实例20
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── GDIDrawing.exe
│   │   └── GDIDrawing.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── GDIDrawing.csproj
│   ├── GDIDrawing.csproj.user
│   ├── GDIDrawing.sln
│   ├── GDIDrawing.suo
│   └── obj
│   └── Debug
│   ├── GDIDrawing.exe
│   ├── GDIDrawing.exe.incr
│   ├── GDIDrawing.Form1.resources
│   ├── GDIDrawing.pdb
│   ├── GDIDrawing.projdata
│   ├── temp
│   └── TempPE
├── 实例21
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── GDIDrawing2.exe
│   │   └── GDIDrawing2.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── GDIDrawing2.csproj
│   ├── GDIDrawing2.csproj.user
│   ├── GDIDrawing2.sln
│   ├── GDIDrawing2.suo
│   └── obj
│   └── Debug
│   ├── GDIDrawing2.exe
│   ├── GDIDrawing2.exe.incr
│   ├── GDIDrawing2.Form1.resources
│   ├── GDIDrawing2.pdb
│   ├── GDIDrawing2.projdata
│   ├── temp
│   └── TempPE
├── 实例22
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── GDIDrawing3.exe
│   │   └── GDIDrawing3.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── GDIDrawing3.csproj
│   ├── GDIDrawing3.csproj.user
│   ├── GDIDrawing3.sln
│   ├── GDIDrawing3.suo
│   └── obj
│   └── Debug
│   ├── GDIDrawing3.exe
│   ├── GDIDrawing3.exe.incr
│   ├── GDIDrawing3.Form1.resources
│   ├── GDIDrawing3.pdb
│   ├── GDIDrawing3.projdata
│   ├── temp
│   └── TempPE
├── 实例23
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DrawPictureString.exe
│   │   └── DrawPictureString.pdb
│   ├── DrawPictureString.csproj
│   ├── DrawPictureString.csproj.user
│   ├── DrawPictureString.sln
│   ├── DrawPictureString.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── DrawPictureString.exe
│   ├── DrawPictureString.exe.incr
│   ├── DrawPictureString.Form1.resources
│   ├── DrawPictureString.pdb
│   ├── DrawPictureString.projdata
│   ├── temp
│   └── TempPE
├── 实例24
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DirectXShowCard.exe
│   │   ├── DirectXShowCard.pdb
│   │   ├── DirectXShowCard.vshost.exe
│   │   └── Interop.DxVBLib.dll
│   ├── DirectXShowCard.csproj
│   ├── DirectXShowCard.csproj.user
│   ├── DirectXShowCard.sln
│   ├── DirectXShowCard.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DirectXShowCard.csproj.GenerateResource.Cache
│   │   │   ├── DirectXShowCard.csproj.ResolveComReference.cache
│   │   │   ├── DirectXShowCard.exe
│   │   │   ├── DirectXShowCard.exe.incr
│   │   │   ├── DirectXShowCard.Form1.resources
│   │   │   ├── DirectXShowCard.pdb
│   │   │   ├── DirectXShowCard.projdata
│   │   │   ├── Interop.DxVBLib.dll
│   │   │   ├── temp
│   │   │   └── TempPE
│   │   ├── DirectXShowCard.csproj.FileList.txt
│   │   └── Interop.DxVBLib.dll
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例25
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DirectDraw1.exe
│   │   ├── DirectDraw1.pdb
│   │   ├── Interop.DxVBLib.dll
│   │   └── sample.bmp
│   ├── DirectDraw1.csproj
│   ├── DirectDraw1.csproj.user
│   ├── DirectDraw1.sln
│   ├── DirectDraw1.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   ├── Debug
│   │   ├── DirectDraw1.exe
│   │   ├── DirectDraw1.exe.incr
│   │   ├── DirectDraw1.Form1.resources
│   │   ├── DirectDraw1.pdb
│   │   ├── DirectDraw1.projdata
│   │   ├── temp
│   │   └── TempPE
│   └── Interop.DxVBLib.dll
├── 实例26
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── chordmap.cdm
│   │   ├── dance.sty
│   │   ├── DirectSound.exe
│   │   ├── DirectSound.pdb
│   │   ├── disco.sty
│   │   ├── Interop.DxVBLib.dll
│   │   └── jazz.sty
│   ├── DirectSound.csproj
│   ├── DirectSound.csproj.user
│   ├── DirectSound.sln
│   ├── DirectSound.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   ├── Debug
│   │   ├── DirectSound.exe
│   │   ├── DirectSound.exe.incr
│   │   ├── DirectSound.Form1.resources
│   │   ├── DirectSound.pdb
│   │   ├── DirectSound.projdata
│   │   ├── temp
│   │   └── TempPE
│   └── Interop.DxVBLib.dll
├── 实例27
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ClipBoard.exe
│   │   └── ClipBoard.pdb
│   ├── ClipBoard.csproj
│   ├── ClipBoard.csproj.user
│   ├── ClipBoard.sln
│   ├── ClipBoard.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── ClipBoard.exe
│   ├── ClipBoard.exe.incr
│   ├── ClipBoard.Form1.resources
│   ├── ClipBoard.pdb
│   ├── ClipBoard.projdata
│   ├── temp
│   └── TempPE
├── 实例28
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Directorys.exe
│   │   └── Directorys.pdb
│   ├── Directorys.csproj
│   ├── Directorys.csproj.user
│   ├── Directorys.sln
│   ├── Directorys.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── Directorys.exe
│   ├── Directorys.exe.incr
│   ├── Directorys.Form1.resources
│   ├── Directorys.pdb
│   ├── Directorys.projdata
│   ├── temp
│   └── TempPE
├── 实例29
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── FileInfo.exe
│   │   └── FileInfo.pdb
│   ├── FileInfo.csproj
│   ├── FileInfo.csproj.user
│   ├── FileInfo.sln
│   ├── FileInfo.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── FileInfo.exe
│   ├── FileInfo.exe.incr
│   ├── FileInfo.Form1.resources
│   ├── FileInfo.pdb
│   ├── FileInfo.projdata
│   ├── temp
│   └── TempPE
├── 实例30
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ListApp.exe
│   │   └── ListApp.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── ListApp.csproj
│   ├── ListApp.csproj.user
│   ├── ListApp.sln
│   ├── ListApp.suo
│   └── obj
│   └── Debug
│   ├── ListApp.exe
│   ├── ListApp.exe.incr
│   ├── ListApp.Form1.resources
│   ├── ListApp.pdb
│   ├── ListApp.projdata
│   ├── temp
│   └── TempPE
├── 实例31
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── doc1.ser
│   │   ├── Serialization.exe
│   │   ├── Serialization.pdb
│   │   └── test.bmp
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── Serialization.exe
│   │   ├── Serialization.exe.incr
│   │   ├── Serialization.Form1.resources
│   │   ├── Serialization.pdb
│   │   ├── Serialization.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── Serialization.csproj
│   ├── Serialization.csproj.user
│   ├── Serialization.sln
│   └── Serialization.suo
├── 实例32
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Exception.exe
│   │   └── Exception.pdb
│   ├── Exception.csproj
│   ├── Exception.csproj.user
│   ├── Exception.sln
│   ├── Exception.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   └── Debug
│   ├── Exception.exe
│   ├── Exception.exe.incr
│   ├── Exception.Form1.resources
│   ├── Exception.pdb
│   ├── Exception.projdata
│   ├── temp
│   └── TempPE
├── 实例33
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── StartMSWordApp.exe
│   │   └── StartMSWordApp.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── StartMSWordApp.exe
│   │   ├── StartMSWordApp.exe.incr
│   │   ├── StartMSWordApp.Form1.resources
│   │   ├── StartMSWordApp.pdb
│   │   ├── StartMSWordApp.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── StartMSWordApp.csproj
│   ├── StartMSWordApp.csproj.user
│   ├── StartMSWordApp.sln
│   └── StartMSWordApp.suo
├── 实例34
│   ├── CDemoLib
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── CDemoLib.dll
│   │   │   └── CDemoLib.pdb
│   │   ├── CDemo.cs
│   │   ├── CDemoLib.csproj
│   │   ├── CDemoLib.csproj.user
│   │   ├── CDemoLib.sln
│   │   ├── CDemoLib.suo
│   │   ├── CDemo.resx
│   │   ├── obj
│   │   │   ├── CDemoLib.csproj.FileList.txt
│   │   │   └── Debug
│   │   │   ├── CDemoLib.CDemo.resources
│   │   │   ├── CDemoLib.csproj.GenerateResource.Cache
│   │   │   ├── CDemoLib.dll
│   │   │   ├── CDemoLib.dll.incr
│   │   │   ├── CDemoLib.pdb
│   │   │   ├── CDemoLib.projdata
│   │   │   ├── temp
│   │   │   └── TempPE
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── CDemoTest
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── CDemoLib.dll
│   │   ├── CDemoLib.pdb
│   │   ├── CDemoTest.exe
│   │   ├── CDemoTest.pdb
│   │   └── CDemoTest.vshost.exe
│   ├── CDemoTest.csproj
│   ├── CDemoTest.csproj.user
│   ├── Form1.cs
│   ├── Form1.resx
│   └── obj
│   ├── CDemoTest.csproj.FileList.txt
│   └── Debug
│   ├── CDemoTest.csproj.GenerateResource.Cache
│   ├── CDemoTest.exe
│   ├── CDemoTest.exe.incr
│   ├── CDemoTest.Form1.resources
│   ├── CDemoTest.pdb
│   ├── CDemoTest.projdata
│   ├── ResolveAssemblyReference.cache
│   ├── temp
│   └── TempPE
├── 实例35
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── SocketClient.exe
│   │   └── SocketClient.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── SocketClient.exe
│   │   ├── SocketClient.exe.incr
│   │   ├── SocketClient.Form1.resources
│   │   ├── SocketClient.pdb
│   │   ├── SocketClient.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── SocketClient.csproj
│   ├── SocketClient.csproj.user
│   ├── SocketClient.sln
│   └── SocketClient.suo
├── 实例36
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── SocketServer.exe
│   │   └── SocketServer.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── SocketServer.exe
│   │   ├── SocketServer.exe.incr
│   │   ├── SocketServer.Form1.resources
│   │   ├── SocketServer.pdb
│   │   ├── SocketServer.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── SocketServer.csproj
│   ├── SocketServer.csproj.user
│   ├── SocketServer.sln
│   └── SocketServer.suo
├── 实例37
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Http.exe
│   │   └── Http.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── Http.csproj
│   ├── Http.csproj.user
│   ├── Http.sln
│   ├── Http.suo
│   └── obj
│   └── Debug
│   ├── Http.exe
│   ├── Http.exe.incr
│   ├── Http.Form1.resources
│   ├── Http.pdb
│   ├── Http.projdata
│   ├── temp
│   └── TempPE
├── 实例38
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Ping.exe
│   │   └── Ping.pdb
│   ├── Class1.cs
│   ├── obj
│   │   └── Debug
│   │   ├── Ping.exe
│   │   ├── Ping.exe.incr
│   │   ├── Ping.pdb
│   │   ├── Ping.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── Ping.csproj
│   ├── Ping.csproj.user
│   ├── Ping.sln
│   └── Ping.suo
├── 实例39
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Proxy.exe
│   │   └── Proxy.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── Proxy.exe
│   │   ├── Proxy.exe.incr
│   │   ├── Proxy.Form1.resources
│   │   ├── Proxy.pdb
│   │   ├── Proxy.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── Proxy.csproj
│   ├── Proxy.csproj.user
│   ├── Proxy.sln
│   └── Proxy.suo
├── 实例40
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── TalkClient.exe
│   │   └── TalkClient.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── TalkClient.exe
│   │   ├── TalkClient.exe.incr
│   │   ├── TalkClient.Form1.resources
│   │   ├── TalkClient.pdb
│   │   ├── TalkClient.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── TalkClient.csproj
│   ├── TalkClient.csproj.user
│   ├── TalkClient.sln
│   └── TalkClient.suo
├── 实例41
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── TalkServer.exe
│   │   └── TalkServer.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   └── Debug
│   │   ├── TalkServer.exe
│   │   ├── TalkServer.exe.incr
│   │   ├── TalkServer.Form1.resources
│   │   ├── TalkServer.pdb
│   │   ├── TalkServer.projdata
│   │   ├── temp
│   │   └── TempPE
│   ├── TalkServer.csproj
│   ├── TalkServer.csproj.user
│   ├── TalkServer.sln
│   └── TalkServer.suo
├── 实例42
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── WebServiceSayHello.dll
│   │   └── WebServiceSayHello.pdb
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── Service1.asmx
│   ├── Service1.asmx.cs
│   ├── Service1.asmx.resx
│   ├── Web.config
│   ├── WebServiceSayHello.csproj
│   ├── WebServiceSayHello.csproj.webinfo
│   └── WebServiceSayHello.vsdisco
├── 实例43
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── ConfirmInput.dll
│   │   └── ConfirmInput.pdb
│   ├── ConfirmInput.csproj
│   ├── ConfirmInput.csproj.webinfo
│   ├── ConfirmInput.sln
│   ├── ConfirmInput.suo
│   ├── ConfirmInput.vsdisco
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── _vti_cnf
│   ├── _vti_pvt
│   │   ├── access.cnf
│   │   ├── deptodoc.btr
│   │   ├── doctodep.btr
│   │   ├── service.cnf
│   │   ├── service.lck
│   │   └── services.cnf
│   ├── _vti_script
│   ├── _vti_txt
│   ├── Web.config
│   ├── WebForm1.aspx
│   ├── WebForm1.aspx.cs
│   └── WebForm1.aspx.resx
├── 实例44
│   ├── AssemblyInfo.cs
│   ├── BaseWebApp.csproj
│   ├── BaseWebApp.csproj.webinfo
│   ├── BaseWebApp.sln
│   ├── BaseWebApp.suo
│   ├── BaseWebApp.vsdisco
│   ├── bin
│   │   ├── BaseWebApp.dll
│   │   └── BaseWebApp.pdb
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── Web.config
│   ├── WebForm1.aspx
│   ├── WebForm1.aspx.cs
│   └── WebForm1.aspx.resx
├── 实例45
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── test.ldb
│   │   ├── test.mdb
│   │   ├── WebApplicationDataBase2.dll
│   │   └── WebApplicationDataBase2.pdb
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── WebApplicationDataBase2.csproj
│   ├── WebApplicationDataBase2.csproj.webinfo
│   ├── WebApplicationDataBase2.sln
│   ├── WebApplicationDataBase2.suo
│   ├── WebApplicationDataBase2.vsdisco
│   ├── Web.config
│   ├── WebForm1.aspx
│   ├── WebForm1.aspx.cs
│   └── WebForm1.aspx.resx
├── 实例46
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── test.mdb
│   │   ├── WebApplicationDataBase3.dll
│   │   └── WebApplicationDataBase3.pdb
│   ├── DataSet1.cs
│   ├── DataSet1.xsd
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── WebApplicationDataBase3.csproj
│   ├── WebApplicationDataBase3.csproj.webinfo
│   ├── WebApplicationDataBase3.vsdisco
│   ├── Web.config
│   ├── WebForm1.aspx
│   ├── WebForm1.aspx.cs
│   └── WebForm1.aspx.resx
├── 实例47
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── WebApplicationWebXML.dll
│   │   └── WebApplicationWebXML.pdb
│   ├── EmailAll.xslt
│   ├── EmailHeader.xslt
│   ├── Emails.xml
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── WebApplicationWebXML.csproj
│   ├── WebApplicationWebXML.csproj.webinfo
│   ├── WebApplicationWebXML.vsdisco
│   ├── Web.config
│   ├── WebForm1.aspx
│   ├── WebForm1.aspx.cs
│   └── WebForm1.aspx.resx
├── 实例48
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── test.mdb
│   │   ├── WebServiceDistribute.dll
│   │   └── WebServiceDistribute.pdb
│   ├── DataSet1.cs
│   ├── DataSet1.xsd
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Global.asax.resx
│   ├── Service1.asmx
│   ├── Service1.asmx.cs
│   ├── Service1.asmx.resx
│   ├── Web.config
│   ├── WebServiceDistribute.csproj
│   ├── WebServiceDistribute.csproj.webinfo
│   └── WebServiceDistribute.vsdisco
├── 实例49
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DisWinClient.exe
│   │   ├── DisWinClient.pdb
│   │   └── DisWinClient.vshost.exe
│   ├── DisWinClient.csproj
│   ├── DisWinClient.csproj.user
│   ├── DisWinClient.sln
│   ├── DisWinClient.suo
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DisWinClient.csproj.GenerateResource.Cache
│   │   │   ├── DisWinClient.exe
│   │   │   ├── DisWinClient.exe.incr
│   │   │   ├── DisWinClient.Form1.resources
│   │   │   ├── DisWinClient.pdb
│   │   │   ├── DisWinClient.projdata
│   │   │   ├── temp
│   │   │   └── TempPE
│   │   │   └── Web 引用.localhost.Reference.cs.dll
│   │   └── DisWinClient.csproj.FileList.txt
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Web 引用
│   └── localhost
│   ├── DataSet1.xsd
│   ├── Reference.cs
│   ├── Reference.map
│   ├── Service1.disco
│   └── Service1.wsdl
└── 实例50
├── AssemblyInfo.cs
├── bin
│   ├── WebApplicationDisWebClient.dll
│   └── WebApplicationDisWebClient.pdb
├── Global.asax
├── Global.asax.cs
├── Global.asax.resx
├── WebApplicationDisWebClient.csproj
├── WebApplicationDisWebClient.csproj.webinfo
├── WebApplicationDisWebClient.vsdisco
├── Web.config
├── WebForm1.aspx
├── WebForm1.aspx.cs
├── WebForm1.aspx.resx
└── Web 引用
└── localhost
├── DataSet1.xsd
├── Reference.cs
├── Reference.map
├── Service1.disco
└── Service1.wsdl

339 directories, 903 files

标签:

实例下载地址

C#经典范例50讲.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警