.NET技术(C#)
gtygogo
这个作者很懒,什么都没留下…
展开
-
C#的四个基本技巧
1.如果可能尽量使用接口来编程 .NET框架包括类和接口,在编写程序的时候,你可能知道正在用.NET的哪个类。然而,在这种情况下如果你用.NET支持的接口而不是它的类来编程时,代码会变得更加稳定、可用性会更高。请分析下面的代码: private void LoadList (object [] items, ListBox l) { for (int i = 0; i l.It转载 2007-01-11 08:50:00 · 402 阅读 · 0 评论 -
Visual C#常用函数和方法集汇总
1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4转载 2007-01-12 09:24:00 · 393 阅读 · 0 评论 -
c#中子线程控制进度条的一个简单例子 - jinjazz - CSDNBlog
c#中子线程控制进度条的一个简单例子 这个问题来自社区提问,代码保留一份用来以后回答 using System; using System.ComponentModel; using System.Windows.Forms; namespace WindowsApplication4 ...{ /**//// /// gui 类 /// public partial class Fo原创 2008-05-12 18:17:00 · 403 阅读 · 0 评论