C#技术学习
itzsl
我很迷茫,但我很坚强!!
展开
-
c#中重定向windows控制台程序的输出信息
using System;using System.Windows.Forms;namespace WindowsApplication8...{ public partial class Form1 : Form ...{ public Form1() ...{ InitializeComponent(); }转载 2008-05-18 19:00:00 · 399 阅读 · 0 评论 -
迭代器
1、C#中的foreach语句隐匿了枚举数的复杂性,方便我们访问——迭代器技术2、与迭代器有关的接口:IEnumerable和IEnumerator接口: IEnumerable接口:要使用Foreach遍历,必须实现IEnumerable接口或者实现GetEnumerator()方法,即必须以某种方式返回 IEnumerator o原创 2009-09-29 13:20:00 · 381 阅读 · 0 评论 -
Virtual、override和new
Virtual、override和new 用new修饰的方法:显示隐匿基类继承的同名方法,不能用基类的引用访问派生类的new方法;用override修饰的方法:表示重写基类的虚方法,可以用基类的引用访问派生类的重写方法;基类方法必须用virtual修饰;virtual修饰的方法:虚方法,允许子类重写该方法;也就是可以override该方法;demo:<img id="Code_Clo原创 2009-10-10 12:01:00 · 509 阅读 · 0 评论