In C#, you can specify a cast by putting the type you want to cast to in parenthesis in front of the reference variable that you want to cast ((type)instance
).
So, to cast the object (dq
) to the type IUIBuildingBlock
, you could use the following code:
((IUIBuildingBlock)dq).QuestionText = reader("QuestionText");
(Note that this will throw an exception if the cast is done on an object that doesn't implement IUIBuildingBlock
, but so will CType
, so I assume that is not a problem.)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…