I am trying to convert the example provided in this MSDN article (http://msdn.microsoft.com/en-us/library/aa479330.aspx) to C#, but am stuck at the following code:

CType(dq, IUIBuildingBlock).QuestionText = reader("QuestionText")

Can any C# guru here please help out in converting the above VB.NET statement to C#?

Thank you.

link|improve this question

25% accept rate
possible duplicate of C#'s equivalent to VB.Net's DirectCast? – Joel Etherton Dec 10 '10 at 13:23
@Joel: I think that question ends up including the answer to this one, but it's ostensibly about DirectCast rather than CType, so I'm not voting to close. – Cody Gray Dec 10 '10 at 13:32
@Cody Gray - that's precisely why I voted to close. By searching with his question, I was able to find one that included his answer. While the question itself may not be an "exact" duplicate, the information he seeks is there. – Joel Etherton Dec 10 '10 at 14:06
feedback

1 Answer

up vote 1 down vote accepted

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.)

link|improve this answer
Thanx Cody. This works perfect! – Girish Dec 10 '10 at 14:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.