本帖最后由 wtujedp 于 2013-09-30 13:00:21 编辑

解决方案 »

  1.   

    在Watch中看OBJECT的类型是什么?强制转换过去就能访问了。
      

  2.   

    refer:
    class Program
        {
            static void Main(string[] args)
            {
                Test test = new Test();
                test.CardNo = "877878";            object obj = test;
                Type type = obj.GetType();
                Console.WriteLine(type.GetProperty("CardNo").GetValue(obj, null));//获得obj对象的CardNo属性值 877878
            }
        }    public class Test
        {
            public string CardNo { get; set; }
        }