Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#properties and auto-propertiesSingle-choice MCQ

What does this auto-property declaration allow callers to do?

public class User { public string Name { get; private set; } public User(string name) => Name = name; }