Tagged Questions

57
votes
10answers
6k views

Why are mutable structs evil?

Following the discussions here on SO I already read several times the remark that mutable structs are evil (like in the answer to this question). What's the actual problem with mutability and ...
23
votes
10answers
3k views

Immutability of structs [closed]

Possible Duplicate: Why are mutable structs evil? I read it in lots of places including here that it's better to make structs as immutable. What's the reason behind this? I see lots of ...
12
votes
3answers
202 views

Why is it okay that this struct is mutable? When are mutable structs acceptable?

Eric Lippert told me I should "try to always make value types immutable", so I figured I should try to always make value types immutable. But, I just found this internal mutable struct, ...
8
votes
6answers
550 views

Should this immutable struct be a mutable class?

I showed this struct to a fellow programmer and they felt that it should be a mutable class. They felt it is inconvenient not to have null references and the ability to alter the object as required. I ...
7
votes
6answers
298 views

How to deal with the immutability of returned structs?

I'm writing a game that has a huge 2D array of "cells". A cell takes only 3 bytes. I also have a class called CellMap, which contains the 2D array as a private field, and provides access to it via a ...
6
votes
3answers
123 views

Why are System.Windows.Point & System.Windows.Vector mutable?

Given that mutable structs are generally regarded as evil (e.g., Why are mutable structs evil?), are there potential benefits that might have prompted the designers of the .NET framework to make ...
6
votes
3answers
538 views

Does using public readonly fields for immutable structs work?

Is this a proper way to declare immutable structs? public struct Pair { public readonly int x; public readonly int y; // Constructor and stuff } I can't think of why this would run ...
6
votes
1answer
258 views

F# : Accessing public readonly members of structs in external assemblies

I'm getting a strange error when I use F# to read a public readonly member of a struct type defined in a C# assembly. // C#: compile to Lib.dll namespace Lib { public class MyClass { public ...
3
votes
4answers
74 views

Changing Various Values within a Struct (How Immutable are they?)

I've been reading up extensively on structs, and I have a decent understanding of where you would use them. One thing though bothers me is, no matter how much i read about it, I don't understand the ...
0
votes
3answers
187 views

What about a mutable struct that's immutable from the standpoint of external code?

Update: It occurred to me after posting this question that the main downside of this idea would simply be that such a type would be easy to use improperly. That is, the type would have to be used in a ...
0
votes
1answer
155 views

Immutable struct with collection

I'm making an immutable struct in .Net which contains a read only collection of a different immutable struct (I have full control over the entire design). I don't need a non-mutating Add method. ...
0
votes
2answers
106 views

How to create a const member for an immutable type?

If you have an immutable type like this: struct Point3 { } and a member inside like origin: public static const Point3 Origin = new Point3 (0,0,0); should you use: new Point3 (0,0,0) ? It ...
-2
votes
2answers
385 views

Xaml serialization and immutable structs?

How can I do this? Tried using a TypeConverter, but the only thing I could think of was to construct the XML for the types, which doesn't quite cut it. TypeConverters in xaml serialization will ...