好像博问不能回复了,看似是某个脚本错误阻止了提交。可有此事?

针对问题:http://space.cnblogs.com/question/12190/

我有这样一段回答,但始终发不上去:

如果可以的话,使用接口,比如:

interface INamed{

        string Name{get;set;}

}

class MyGenaric<T> where T: INamed, new() {

    void Method(){

                      T t = new T();

                       t.Name = "something else";//这里也可以向楼上说的,使用 as 进行类型转换后赋值,而免去泛型定义时的接口申明。但这样“编译器”不能保证使用该类型的开发人员,其具体泛型实现了该接口。

                       ...........

    }

}

这种从我的眼光看要优雅一些。如果接口不能由你来设定,那么大概需要使用反射吧:

          T t = ...;

          Property name = t.GetType().GetProperty("Name");

          name.SetValue(t, "something else");

我的写法肯定不对,但大概应该是这么个过程。

posted @ 2010-01-31 22:32  陛下  阅读(203)  评论(2编辑  收藏  举报