Untitled

Anonymous
csharp
04/28/2022 2:59 PM
488 B
22
Indexable
public class Test 
{
    private string textContent = "Welcome to your new Blazor app.";
    private RenderFragment childContent { get; set; }

    private RenderFragment AddContent() => builder =>
    {
        builder.AddContent(1, textContent);
    };

    protected override void OnInitialized()
    {
        childContent = AddContent();
    }
}
Editor is loading...