What would this line of C# using Lambda expression be in VB.Net?
string s = blockRenderer.Capture(() => RenderPartialExtensions.RenderPartial(h, userControl, viewData));
Something with function of - but I can't figure out exactly how...
|
What would this line of C# using Lambda expression be in VB.Net?
Something with function of - but I can't figure out exactly how...
| ||||
|
feedback
|
|
It should be something like this:
| |||
|
feedback
|
|
Check out this online C# to VB.NET converter. It doesn't always get things perfect, but it does a pretty good job all the times I've used it.
| |||
|
feedback
|
| |||
|
feedback
|
|
Lambda Expressions in VB.NET need to have a return value, the solution is a wrapper method.
| |||
|
feedback
|