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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:03:24+00:00 2026-05-25T18:03:24+00:00

I have a property enclosing a rectangle I have called it Window. when I

  • 0

I have a property enclosing a rectangle I have called it Window.
when I try to use the property to change the location or “X” value of the rectangle, I get an error: “Can not modify the return value of Window because it is not a variable.”

Now I know I can just directly access the variable, but I would prefer to be able just modify the “X” value. I also don’t want to be creating a new rectangle every time I modify it.

So is there something I can add to my property that will let me modify the X value through the property?

This is where I am trying to use the property:

Window.X -= amount;

This is where I have the proprty:

private Rectangle _window;
public Rectangle Window
{
    get { return _window;}
    set
    {
        if (/*condition*/)
            _window = value;
    }
}
  • 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-25T18:03:25+00:00Added an answer on May 25, 2026 at 6:03 pm

    Problem is that Rectangle is struct. Property accessor is actually a method and when it returns struct it is just copied, so you can’t modify underlying struct that way.

    Solutions:

    1. If Rectangle is your code make it class.
    2. r = Window; r.X -= amount; Window = r;

    By the way you should thank C# compiler for that, becase technically it can modify that X, but it would be field/prop of temporary object, it would make later debugging a hell for you. In C++ it actually compiles.

    Also it is good example why structures should be immutable. You just wouldn’t have that temptation.

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

Sidebar

Related Questions

hi i have property named. public bool ShowLabels{get; set;} and one toolbar menu button
I have a property called IsSecureConnection that is part of my object's interface. This
I have property management application consisting of tables: tenants landlords units properties vendors-contacts Basically
I have two collections which have property Email in both collections. I need to
I have a Property Grid in C#, loading up a 'PropertyAdapter' object (a basic
I have a property on a domain object that is declared in a many-to-one
I have a property of type uint on my entity. Something like: public class
I have a property on my classes for logging service. private ILogger logger =
I have a property within a class, that I need to iterate through all
I have a property on a class that happens to be a Table<T> .

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.