Initializers let you specify the parameter name explicitly when instantiating an object (both named and anonymous objects). However, if you're instantiating an anonymous object and the parameter's name is same as the value, consider dropping the name altogether as it is redundant.
new Person
{
name = name,
age = 25,
}
new Person
{
name,
age = 25,
}