
C# 实例Step by Step
和海风
难得所爱,忠之无悔
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
(1)Hello World
/*=========================================================== * Autho Study : Hehf * Time: 2009 * Type: Console Application ===========================================================*///usi原创 2009-02-25 23:59:00 · 306 阅读 · 0 评论 -
(9) Complete Classes(练习使用Point类)
//定义类using System;using System.Collections.Generic;using System.Text;namespace CompleteClasses{ public class Point { /* * class Model{原创 2009-03-01 23:43:00 · 371 阅读 · 0 评论 -
(8) Simple Classes
#region Using directivesusing System;using System.Collections.Generic;using System.Text;#endregionnamespace Classes{ class Program { //void static Entrance原创 2009-03-01 23:13:00 · 269 阅读 · 0 评论 -
(7)Maths Complete
#region Using directivesusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Windows.Forms;#endregionnam原创 2009-03-01 23:04:00 · 278 阅读 · 0 评论 -
(10)Parameters参数使用完全学习
//定义参数类1using System;using System.Collections.Generic;using System.Text;namespace Parameters{ class Param1 { public int Number; }} //定义参数类2using System;原创 2009-03-02 00:12:00 · 417 阅读 · 0 评论 -
(6) 对话框openFileDialog1
/*=========================================================== * Autho Study : Hehf * Time: 2009-02-27 * Type: Form Application ===========================================================*/us原创 2009-02-27 13:21:00 · 903 阅读 · 0 评论 -
(5) do...while.../while...do...语句
/*=========================================================== * Autho Study : Hehf * Time: 2009-02-27 * Type: Form Application ===========================================================*/us原创 2009-02-27 13:08:00 · 289 阅读 · 0 评论 -
(3) C#值类型和SWITCH语句
/*=========================================================== * Autho Study : Hehf * Time: 2009-02-26 * Type: Form Application ===========================================================*///原创 2009-02-26 23:32:00 · 525 阅读 · 0 评论 -
(2)简单加、减、乘、除、求余等运算
/*=========================================================== * Autho Study : Hehf * Time: 2009 * Type: Form Application ===========================================================*/using原创 2009-02-26 00:45:00 · 768 阅读 · 0 评论 -
(4) 文本框间字符串复制
/*=========================================================== * Autho Study : Hehf * Time: 2009-02-26 * Type: Form Application ===========================================================*/us原创 2009-02-27 00:09:00 · 294 阅读 · 0 评论 -
(11)Struct And Enums结构和枚举
1、定义Month枚举类型using System;using System.Collections.Generic;using System.Text;namespace StructAndEnums{ enum Month { January, February, March, April, May, June,原创 2009-03-05 10:04:00 · 311 阅读 · 0 评论