Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 671087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:20:06+00:00 2026-05-14T00:20:06+00:00

I found a topic on MSDN that talks that yes, this is possible. I

  • 0

I found a topic on MSDN that talks that yes, this is possible.

I did a test that seems to break this statement:

using System;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            Foo f = new Foo("1");
            Console.WriteLine(f.Bar); // prints 1
            f.Test("2");
            Console.WriteLine(f.Bar);// successfully prints 2
        }
    }

    class Foo
    {
        public Foo(string b)
        {
            this.Bar = b;
        }

        public string Bar { get; private set; }

        public void Test(string b)
        {
            // this would be impossible for readonly field!
            // next error would be occur: CS0191 or CS0191
            // A readonly field cannot be assigned to (except in a constructor or a variable initializer)
            this.Bar = b; 
        }
    }
}

Where am I wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T00:20:07+00:00Added an answer on May 14, 2026 at 12:20 am

    The answer below was written back in 2010. In C# 6 (released in 2015) you can write read-only automatically-implemented properties:

    // This can only be assigned to in a constructor
    public int Foo { get; }
    

    You’re absolutely right. Properly read-only automatically implemented properties are currently impossible. Making the setter private isn’t the same thing, regardless of what some books and MSDN might say 🙂

    If I ruled the world, this would not be the case. When I see some of the language designers at NDC 2010 in June (please come along!) I intend to try to persuade, bribe, cajole and generally make a nuisance of myself until they agree. It’s just one wafer-thin feature, after all.

    Looking at that MSDN article, the text itself doesn’t say that it creates a read-only automatic property. It creates an immutable type using an automatic property, and that’s correct. The only problematic bits are the comments saying

    // Read-only properties.
    

    … which are definitely wrong. The framework agrees with us:

    var prop = typeof(Contact).GetProperty("Name");
    Console.WriteLine(prop.CanWrite); // Prints True
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've found this topic for PostData using http. but it doesn't work. What's wrong?
As I was going through MSDN on the threading topic I found out that
I've found this topic which I've implemented (see accepted answer): javascript equivalent of PHP's
The title is my question. I already found a topic related to this here
This topic can look similar to others but I haven't found any usable answer
I've found some questions here about this topic, but none of the solutions solve
This topic has been covered on this forums, but I haven't found a working
While searching for Tutorials on generating random numbers in C I found this topic
In this topic I found a good way to prevent cascade deleting of relating
I found similar topic , but I want to do something different. When using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.