2016年4月9日
摘要: 窗体间传值 今天得空,刚好看到网上好多人再找winform窗体间传值的问题,由于昨天项目的优化的感觉不错,就写了个C# winform窗体间传值的demo,希望能给需要的人的带来帮助; 工程的源代码地址:https://github.com/yes-or-no/WinFormTransValueDe 阅读全文
posted @ 2016-04-09 13:01 成功永远在拐角之后 阅读(24172) 评论(13) 推荐(9) 编辑
  2015年9月10日
摘要: using System;using System.Collections.Generic;namespace CSharp栈{ class Program { static void Main(string[] args) { Stac... 阅读全文
posted @ 2015-09-10 15:19 成功永远在拐角之后 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;namespace Queue测试{ class Program { static void Main(string[] args) ... 阅读全文
posted @ 2015-09-10 14:47 成功永远在拐角之后 阅读(23515) 评论(3) 推荐(1) 编辑
  2015年9月8日
摘要: 根据查阅的资料对代码进行修改并完善备注后的结果。希望能对新手有所帮助。 1 using System; 6 using System.IO; 8 namespace 文件操作类 9 { 10 public class FileHelper 11 { 12 ... 阅读全文
posted @ 2015-09-08 22:32 成功永远在拐角之后 阅读(1494) 评论(0) 推荐(0) 编辑
摘要: 文件与文件夹操作主要用到以下几个类: 1.File类: 提供用于创建、复制、删除、移动和打开文件的静态方法,并协助创建 FileStream 对象。 msdn:http://msdn.microsoft.com/zh-cn/library/system.io.file(v=VS.80).a... 阅读全文
posted @ 2015-09-08 21:57 成功永远在拐角之后 阅读(430) 评论(0) 推荐(0) 编辑