
C#2.0
文章平均质量分 77
phqm
有师傅多好!
展开
-
C#泛型简介
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Cstu...{ class StackT> ...{ private T data; // T 作为私有成员数据类型。 private T[] store;原创 2008-02-10 13:20:00 · 618 阅读 · 0 评论 -
泛型类型的成员
class C{}//合法class D:C{}//合法class E:C{}//合法class F:C{}//合法class G:C{}//非法 class C{public V f1;//声明字段public D f2;//作为其他泛型类型的参数public C(V x){this.f1=x;}}原创 2008-02-10 13:56:00 · 619 阅读 · 0 评论 -
泛型实例
using System;using System.Collections;using System.Collections.Generic;using System.Text;namespace Generics_CSharp{ // 尖括号中的类型参数 T。 public class MyListT> : IEnumerableT> { protected原创 2008-02-10 14:14:00 · 1030 阅读 · 0 评论 -
DSOFramer的使用
一、先注册一下DSOFramer.ocx 操作:将DSOFramer.ocx复制到C:/windows/system32目录下, 开始->运行->regsvr32 DSOFramer.ocx , 系统会提示DSOFramer.ocx中的DllRegisterServer成功。二、添加DSOFramer.ocx到你的项目中 操作:先说明一下,我用VS 2005 ,其他VS转载 2008-02-25 21:28:00 · 35246 阅读 · 13 评论