C# 学习笔记
coreblood
If is not null
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
泛型方法
using System;using System.Collections.Generic;using System.Text;namespace 泛型方法{ class Program { public interface IAccount { decimal Balance { get;} } publi原创 2008-11-04 10:44:00 · 410 阅读 · 0 评论 -
泛型委托
委托是类型安全的方法引用。通过泛型委托,委托的参数可以在以后来定义。 参考.net 2.0中的EventHandle定义 public sealed delegate void EventHandler ( Object sender, TEventArgs e) where TEventArgs : EventArgs原创 2008-11-04 11:04:00 · 323 阅读 · 0 评论
分享