Hi all. Would there be an issues to `open`ing `Res...
# exposed
r
Hi all. Would there be an issues to `open`ing
ResultRow
? Long story short I wanted to create a delegate class to ResultRow but I don’t believe its possible due to ResultRow not being open.
t
Could you tell what and why you want to extend on
ResultRow
? Because opening ResultRow wont help because you can delegate only on interfaces.
r
Ah, good call. I was wanting to delegate to ResultRow but forgot about the interface part of delegates. Overall, what I was trying to accomplish was creating typed results rows without having to write a wrapper class implementation. i.e. UsersTable -> UsersResultRow (which would just delegate to the Result Row, etc.)