Bug: Using Util.RawHtml("...").Dump from VB gives an error "Public member 'Dump' of type 'RawHtml' not found.
Trying to use Util.RawHtml.Dump from VB does not work, it fails with a missing member exception "Public member 'Dump' of type 'RawHtml' not found."
1
vote
Guy Gervais
shared this idea
-
Amit Choudhary commented
I know it's too old but stumbled upon the same issue and found solution.
VB.Net doesn't regard extension methods nicely. So you have explicitly call
'LINQPad.Extensions.Dump(Util.RawHtml(htmlString))'.