
C#
唐增辉
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
我用C#写的日历
//////////////////////只要调用构造方法就可以啦//////////////////////////// using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { ///原创 2010-02-11 08:52:00 · 985 阅读 · 3 评论 -
关于C#
///窗体显示 private void timer1_Tick(object sender, EventArgs e) { if (this.Opacity > 0.01) { this.Opacity = this.Opacity - 0.01;原创 2010-02-11 10:14:00 · 530 阅读 · 0 评论 -
c#-以二进制方式读文件
using System; using System.IO; public class FileApp { public static void Main() { // 在当前目录创建一个文件myfile.txt,对该文件具有读写权限 FileStream fsMyfile = new FileStream("myfile.txt" , FileMode.Cre原创 2010-02-11 09:39:00 · 1240 阅读 · 0 评论