C# winform窗体间传值(使用委托或事件)
摘要:窗体间传值 今天得空,刚好看到网上好多人再找winform窗体间传值的问题,由于昨天项目的优化的感觉不错,就写了个C# winform窗体间传值的demo,希望能给需要的人的带来帮助; 工程的源代码地址:https://github.com/yes-or-no/WinFormTransValueDe
阅读全文
posted @
2016-04-09 13:01
成功永远在拐角之后
阅读(24950)
推荐(10)
C#栈Stack的使用
摘要:using System;using System.Collections.Generic;namespace CSharp栈{ class Program { static void Main(string[] args) { Stac...
阅读全文
posted @
2015-09-10 15:19
成功永远在拐角之后
阅读(1081)
推荐(0)
C# 队列Queue
摘要:using System;using System.Collections.Generic;using System.Linq;namespace Queue测试{ class Program { static void Main(string[] args) ...
阅读全文
posted @
2015-09-10 14:47
成功永远在拐角之后
阅读(23543)
推荐(1)
C# 文件操作的工具类
摘要:根据查阅的资料对代码进行修改并完善备注后的结果。希望能对新手有所帮助。 1 using System; 6 using System.IO; 8 namespace 文件操作类 9 { 10 public class FileHelper 11 { 12 ...
阅读全文
posted @
2015-09-08 22:32
成功永远在拐角之后
阅读(1510)
推荐(0)