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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T07:56:15+00:00 2026-06-08T07:56:15+00:00

Could someone please advise me if this is possible. I am looking at a

  • 0

Could someone please advise me if this is possible. I am looking at a code sample from Microsoft on GameState for their XNA framework. In one of the classes they use ‘Public ReadOnly’ array data members. Although not a practice that promotes OO but nothing wrong with that.

The class later instantiates it inside the constructor, so far so good, its documented on MSDN too.

PROBLEM: The class later iterates through the array in a class method and changes the data in the array. I looked on MSDN and Googled on it and everywhere I look it says flat out that will error out. Is there a special exception for read-only arrays?

Please advise.

public class InputState
{
    public readonly KeyboardState[] CurrentKeyboardStates;
    public readonly KeyboardState[] LastKeyboardStates;

    public InputState()
    {
        CurrentKeyboardStates = new KeyboardState[max];  
        LastKeyboardStates = new KeyboardState[max];  
    }
    //Does not make sense code...
    public void Update()
    {
        for (int i=0; i < max; ++i)
        {
            //this should throw errors...
            CurrentKeyboardStates[i] = LastKeyboardStates[i];  
            LastKeyboardStates[i] = Keyboard.GetState();
            //more code....
        }
    }
}
  • 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-06-08T07:56:17+00:00Added an answer on June 8, 2026 at 7:56 am

    Changing elements of a read-only array is perfectly fine, you just cannot re-assign the reference. (cannot set CurrentKeyboardStates/LastKeyboardStates to a new array, etc.) The element values can be changed.

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

Sidebar

Related Questions

Could someone please advise me how i could make this code more generic? I've
Could someone please suggest why this is happening... I’ve got some code to pretty
I am not sure if this is possible, but maybe someone could advise. We
Possible Duplicate: C# localization , really confusing me Could someone please share their localization
Could someone please advise a free GUI editor (GUI designer)? This question was asked
Please could someone advise me regarding this. I am currently using the accordion plugin
Could someone please advice why i have a memory leak in this code? I
I wonder whether someone could help me please. I've been looking through this, and
Could someone please advise the current best practice around Date and Calendar types. When
Could someone please advise? If const in C++ defaults to internal linkage, why do

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.