随笔分类 -  .NET2.0&3.5

摘要:Collections HashSet)>) provides high performance set operations to the .NET Framework. A set is a collection that contains no duplicate elements, and whose elements are in no particular order. For mo... 阅读全文
posted @ 2007-12-13 14:39 许晓光 阅读(270) 评论(0) 推荐(0)
摘要:A quick way to measure your understanding of .NET is to take some quiz questions. And from time to time, I will offer some for your enjoyment. The answers will be given out either in the comment and/o... 阅读全文
posted @ 2007-12-04 17:36 许晓光 阅读(418) 评论(0) 推荐(0)
摘要:Here are the results of the quiz. Correctly answered questions are in green. Incorrectly answered questions are in red. ... 阅读全文
posted @ 2007-12-04 16:54 许晓光 阅读(334) 评论(2) 推荐(0)
摘要:use what namespace 1using System.Text.RegularExpressions; load file into richtextbox 1private System.Windows.Forms.RichTextBox inputText; 2private void LoadTextFile() ... 阅读全文
posted @ 2007-12-04 11:13 许晓光 阅读(226) 评论(1) 推荐(0)
摘要:introduction to Generics Generic classes and methods combine reusability, type safety and efficiency in a way that their non-generic counterparts cannot. Generics are most commonly used with ... 阅读全文
posted @ 2007-12-03 15:57 许晓光 阅读(194) 评论(0) 推荐(0)
摘要:use what namespace 1using System.IO; 2using System.Net; implementing FTPutil class 1try 2{ 3FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(uri); ... 阅读全文
posted @ 2007-12-03 10:37 许晓光 阅读(176) 评论(0) 推荐(0)
摘要:use 1using System.IO; 阅读全文
posted @ 2007-11-30 16:40 许晓光 阅读(189) 评论(0) 推荐(0)
摘要:use 1using System.IO; 2using System.IO.Compression; compress 1byte [] buffer = null; 阅读全文
posted @ 2007-11-29 11:03 许晓光 阅读(215) 评论(0) 推荐(0)
摘要:use namespace 1using System.Security.Principal; 2using System.Security.AccessControl; define variable 1private FileSecurity m_fileSecurity; show file acces... 阅读全文
posted @ 2007-11-29 10:17 许晓光 阅读(226) 评论(0) 推荐(0)
摘要:use 1Properties.Settings.Default.clientStringSetting; 阅读全文
posted @ 2007-11-28 18:02 许晓光 阅读(252) 评论(0) 推荐(0)
摘要:use 1 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; 2 private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; Click events tableLayoutPanel1.Cell... 阅读全文
posted @ 2007-11-27 16:27 许晓光 阅读(2051) 评论(0) 推荐(0)
摘要:use 1 this.maskedTextBox1.Mask = "000-0000-0000"; 阅读全文
posted @ 2007-11-27 09:24 许晓光 阅读(808) 评论(0) 推荐(0)
摘要:use 1private System.Windows.Forms.MenuStrip; 2private System.Windows.Forms.ToolStrip; How to handle GUI events 1 private void fileToolStripMenuItem_Click(object sender,... 阅读全文
posted @ 2007-11-26 18:21 许晓光 阅读(567) 评论(0) 推荐(0)
摘要:use System.Windows.Forms.SplitContainer MySplitContainer = new System.Windows.Forms.SplitContainer(); initialize 1 this.SuspendLayout(); 2 3 ... 阅读全文
posted @ 2007-11-26 15:53 许晓光 阅读(299) 评论(0) 推荐(0)
摘要:Silverlighit is a cross-browser,cross-platform plug in for delivering the next generation of .NET-based media experiences and rich interactive applications for the Web. 阅读全文
posted @ 2007-11-13 14:09 许晓光 阅读(181) 评论(0) 推荐(0)
摘要:Here is link to PDF 阅读全文
posted @ 2007-11-09 17:36 许晓光 阅读(1028) 评论(2) 推荐(0)
摘要:Book Description Foundations of Object-Oriented Programming Using .NET 2.0 Patterns solves the object-oriented and pattern-programming problem by mixing the two--the book teaches object-oriented conce... 阅读全文
posted @ 2007-10-22 13:44 许晓光 阅读(318) 评论(0) 推荐(0)
摘要:C++, C#, VB.NET 阅读全文
posted @ 2007-10-11 09:11 许晓光 阅读(199) 评论(1) 推荐(0)
摘要:我们应该基于原始的代码版本,而不能升级到新的开发环境! 阅读全文
posted @ 2007-10-10 09:08 许晓光 阅读(167) 评论(0) 推荐(0)
摘要:The C# 3.0 language and compiler introduce several new language features. These new language constructs are useful individually in various contexts, and collectively for doing Language-Integrated Quer... 阅读全文
posted @ 2007-10-08 09:23 许晓光 阅读(200) 评论(0) 推荐(0)