Starting Out With Visual C# (5th Edition)
Starting Out With Visual C# (5th Edition)
5th Edition
ISBN: 9780135183519
Author: Tony Gaddis
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 10.2, Problem 10.9CP

Explanation of Solution

Assigning a value to a read-only property:

  • Read-only property has a get method, but it does not have any set method to modify the value.
  • In order to make a property read only, simply write a “set” accessor method for the property.
  • Therefore, the property becomes a read-only property.
  • When someone tries to assign a value to a read-only property, an error will occur at the time of executing the program.

Example:

//Include libraries

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text.RegularExpressions;

//Define namespace

namespace ConsoleApplication7

{

    //Define class

    public class Square

    {

        //Field

        private double _perimeter;

        //Define a constructor

        Square()

        {

            //Assign value

            _perimeter=0.0;

        }

        //Perimeter property

        public double Perimeter

        {

            //Input value

            set

            {

                _perimeter=value;

            }

            //Display value

            get

            {

                return _perimeter;

            }

       ;&#x...

Blurred answer

Chapter 10 Solutions

Starting Out With Visual C# (5th Edition)

Ch. 10.3 - Prob. 10.11CPCh. 10.3 - Prob. 10.12CPCh. 10.3 - Prob. 10.13CPCh. 10.3 - Prob. 10.14CPCh. 10.3 - Prob. 10.15CPCh. 10.4 - Prob. 10.16CPCh. 10.4 - Prob. 10.17CPCh. 10.4 - Prob. 10.18CPCh. 10.5 - Prob. 10.19CPCh. 10.5 - Prob. 10.20CPCh. 10.5 - Prob. 10.21CPCh. 10.5 - Prob. 10.22CPCh. 10.5 - Prob. 10.23CPCh. 10.5 - Prob. 10.24CPCh. 10.6 - Prob. 10.25CPCh. 10.6 - Prob. 10.26CPCh. 10.6 - Prob. 10.27CPCh. 10.6 - Prob. 10.28CPCh. 10.6 - Prob. 10.29CPCh. 10.7 - Prob. 10.30CPCh. 10.7 - Prob. 10.31CPCh. 10.7 - Prob. 10.32CPCh. 10.7 - Prob. 10.33CPCh. 10 - Prob. 1MCCh. 10 - Prob. 2MCCh. 10 - Prob. 3MCCh. 10 - Prob. 4MCCh. 10 - Prob. 5MCCh. 10 - Prob. 6MCCh. 10 - Prob. 7MCCh. 10 - Prob. 8MCCh. 10 - Prob. 9MCCh. 10 - Prob. 10MCCh. 10 - Prob. 11MCCh. 10 - Prob. 12MCCh. 10 - Prob. 13MCCh. 10 - Prob. 14MCCh. 10 - Prob. 15MCCh. 10 - Prob. 16MCCh. 10 - Prob. 17MCCh. 10 - Prob. 18MCCh. 10 - Prob. 19MCCh. 10 - Prob. 20MCCh. 10 - Prob. 21MCCh. 10 - Prob. 22MCCh. 10 - Prob. 1TFCh. 10 - Prob. 2TFCh. 10 - Prob. 3TFCh. 10 - Prob. 4TFCh. 10 - Prob. 5TFCh. 10 - Prob. 6TFCh. 10 - Prob. 7TFCh. 10 - Prob. 8TFCh. 10 - Prob. 9TFCh. 10 - Prob. 10TFCh. 10 - Prob. 11TFCh. 10 - Prob. 12TFCh. 10 - Prob. 13TFCh. 10 - Prob. 14TFCh. 10 - Prob. 15TFCh. 10 - Prob. 16TFCh. 10 - Prob. 17TFCh. 10 - Prob. 18TFCh. 10 - Prob. 1SACh. 10 - Prob. 2SACh. 10 - Prob. 3SACh. 10 - Prob. 4SACh. 10 - Prob. 5SACh. 10 - Prob. 6SACh. 10 - Prob. 7SACh. 10 - Prob. 8SACh. 10 - Prob. 9SACh. 10 - Prob. 10SACh. 10 - Prob. 11SACh. 10 - Prob. 12SACh. 10 - Prob. 13SACh. 10 - Prob. 14SACh. 10 - Prob. 15SACh. 10 - Prob. 16SACh. 10 - Prob. 17SACh. 10 - Prob. 18SACh. 10 - Prob. 1AWCh. 10 - Prob. 2AWCh. 10 - Prob. 3AWCh. 10 - Prob. 4AWCh. 10 - Prob. 5AWCh. 10 - Prob. 6AWCh. 10 - Prob. 1PPCh. 10 - Prob. 2PPCh. 10 - Prob. 3PPCh. 10 - Prob. 4PPCh. 10 - Prob. 5PPCh. 10 - Prob. 6PPCh. 10 - Prob. 7PPCh. 10 - Prob. 8PP
Knowledge Booster
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education