btnRoomType.Name = dr.Field<int>("fRoomTypeID").ToString();
与 btnRoomType.Name = dr["fRoomTypeID"].ToString();
前者存在类型转换,不是很懂!跪谢
前者会由object转换为int
无论它是否转换为int 类型结果不都是要转换为string 类型数据嘛 ?
这个是不是多余了
@maanshancss: 如果你是用string来后续处理,当然没有必要,但如果你要用int做处理呢
本例中是没有必要