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

  • Home
  • SEARCH
  • 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 6352647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:15:59+00:00 2026-05-24T22:15:59+00:00

Value types behavior shows that whatever value we are holding cannot be changed through

  • 0

Value types behavior shows that whatever value we are holding cannot be changed through some other variable .

But I still have a confusion in my mind about what i mentioned in the title of this post . Can anyone clarify?

  • 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-24T22:16:00+00:00Added an answer on May 24, 2026 at 10:16 pm

    Value types can be either mutable or (modulo some weird edge cases) immutable, depending on how you write them.

    Mutable:

    public struct MutableValueType
    {
        public int MyInt { get; set; }
    }
    

    Immutable:

    public struct ImmutableValueType
    {
        private readonly int myInt;
        public ImmutableValueType(int i) { this.myInt = i; }
    
        public int MyInt { get { return this.myInt; } }
    }
    

    The built-in value types (int, double and the like) are immutable, but you can very easily create your own mutable structs.

    One piece of advice: don’t. Mutable value types are a bad idea, and should be avoided. For example, what does this code do:

    SomeType t = new SomeType();
    t.X = 5;
    
    SomeType u = t;
    t.X = 10;
    
    Console.WriteLine(u.X);
    

    It depends. If SomeType is a value type, it prints 5, which is a pretty confusing result.

    See this question for more info on why you should avoid mutable value types.

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

Sidebar

Related Questions

MSDN docs say that only value types need boxing, but this does not apply
When upgrading from libxml2 2.6 to 2.7, some behavior changed for me. I've located
I have a simple HTML (as HTA) application that shows strange behavior on Windows
The size and range of the integer value types in C++ are platform specific.
It is somewhat known where .NET keeps value types in memory (mostly in stack
as we know reference types are always stored on heap and value types are
.NET we have primitive datatypes like int and value types like struct. And also
Extract from CLR via C# on Boxing / Unboxing value types ... On Boxing:
In C#, Value Types (eg: int, float, etc) are stored on the stack. Method
What is the best way to have an associative array with arbitrary value types

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.