In namespace Microsoft.AspNetCore.Builder in the class WebApplication there is this strange syntax in line 98 or 106. What does this mean?
public static WebApplicationBuilder CreateBuilder() =>
new(new());
public static WebApplicationBuilder CreateBuilder(string[] args) =>
new(new() { Args = args });