#790 – Property get and set Accessors Can Have Different Access Modifiers

When you implement a property in a class, you can specify different access modifiers for the get vs. set accessors.  This is true whether you are implementing the property yourself, or using an automatic property.

Different combinations of access modifiers include:

  • get/set both public – client can read/write property value
  • get/set both private – client has no access to the property
  • get public, set private – property is read-only
  • get private, set public – property is write-only
        // get/set both public
        public string Name { get; set; }

        // get/set both private
        private string SecretName { get; set; }

        // public get => read-only
        public string CalcName { get; private set; }

        // public set => write-only
        public string WriteOnlyName { private get; set; }

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

One Response to #790 – Property get and set Accessors Can Have Different Access Modifiers

  1. Pingback: Kana Waa Cashar Danboo Inoo BILAAMI dOONA | Bariisle.wordpress.com

Leave a comment