摘要: C# type rebinding,a program demonstrating what I can figure out about simulatinggeneric type rebinding in C# (which is so common in C++ programs), it may lookstupid, but it really works as intended.using System;class BaseG{ public class ReboundType<_T> { public virtual _T T {get; set;} ... 阅读全文
posted @ 2009-04-11 20:58 quanben 阅读(154) 评论(0) 推荐(0) 编辑