Sorry it is a dumb question, just learning from a book and I saw this code:
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
My question is how is this working? There is no set; and we are assigning a value to that property.