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 147177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:44:08+00:00 2026-05-11T08:44:08+00:00

Not sure if I worded this correctly … but I have the following code:

  • 0

Not sure if I worded this correctly … but I have the following code:

    public Guid ItemId     {         get;     }      public TransactionItem()     {         this.ItemId = Guid.Empty;     } 

Naturally I am getting a read-only issue … which I do understand. Is there anyway to set this property value without having to do something like the below:

    Guid _itemId = Guid.Empty;     public Guid ItemId     {         get         {             return _itemId;         }         set         {             _itemId = value;         }     } 

or

    public Guid ItemId     {         get;         internal set;     } 

Thanks in advance!

  • 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. 2026-05-11T08:44:09+00:00Added an answer on May 11, 2026 at 8:44 am

    I would go for this:

    public Guid ItemId {     get;     private set; // can omit as of C# 6  }  public TransactionItem() {     this.ItemId = Guid.Empty; } 

    Of course, it would be open for setting within this class, but since you are writing it I hope you have the sense to not break your own intentions…

    In my opinion, things like readonly properties, are mostly important when seen from the outside. From the inside, it doesn’t really matter what it is, cause there, you are the King =)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im an iphone noob. I'm not sure if I'm asking this correctly, but I
(I'm not sure if that title is worded correctly, as I'm still new to
I'm not sure if this is a trivial questions but in a PHP class:
Ok, not really sure how to word, but will try my best. I have
I'm not sure if I worded the subject correctly. I am looping through an
I'm not sure if I worded the question correctly. I am dynamically building a
Not sure if this is a bug in jQuery 1.4.2 - I can't figure
How can I launch an event that has accessors like this : public event
I have an app, it worked well on simulator, but the ad hoc version
Before anybody asks, I am not doing any kind of screenscraping. I'm trying to

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.