随笔分类 - C#与.NET高级程序设计系列(读书笔记)
摘要:代码范例; CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System;using System.Collections.Generic;using System.Text;using System.IO;// The bi...
阅读全文
摘要:1。文件或者目录操作可以用到FileInfo,File,DirectoryInfo,Directory类: FileInfo和File的主要区别是File的多数方法都是静态方法,DirectoryInfo与Directory区别与此相似。 2。流:In the world of I/Omanipulation, a stream represents a chunk of data. Strea...
阅读全文
摘要:The member variables of class types are automatically set to an appropriate default value. Thisvalue will differ based on the exact data type; however, the rules are simple:• bool types are set to fal...
阅读全文
摘要:C# Access Modifier Meaning in Life public Marks a member as accessible from an object variable as well as anyderived classes. private Marks a method as accessible only by the class that has def...
阅读全文