Tagged Questions
100
votes
7answers
29k views
Structure Vs Class in C#
When you create an instance of a class with the new operator, memory gets allocated on the heap. When you create an instance of a struct with the new operator where does the memory get allocated, on ...
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 ...
42
votes
5answers
1k views
Why is this implemented as a struct?
In System.Data.Linq, EntitySet<T> uses a couple of ItemList<T> structs which look like this:
internal struct ItemList<T> where T : class
{
private T[] items;
private int ...
38
votes
6answers
959 views
C# 'is' type check on struct - odd .NET 4.0 x86 optimization behavior
Update: I have filed a bug report with Microsoft Connect, please vote for it!
Update 2: Microsoft have marked the bug report as fixed
Posted by Microsoft on 18/08/2010 at 17:25
This bug will ...
32
votes
7answers
505 views
Why doesn't the CLR always call value type constructors
I have a question concerning type constructors within a Value type. This question was inspired by something that Jeffrey Richter wrote in CLR via C# 3rd ed, he says (on page 195 - chapter 8) that you ...
29
votes
7answers
6k views
Why can't I define a default constructor for a struct in .NET?
In .NET a value type (C# struct) can't have a constructor with no parameters. According to this post this is mandated by the CLI spec. What happes is that for every value-type a default constructor is ...
26
votes
20answers
3k views
Structs - real life examples?
There are any number of questions here on SO dealing with the differences between Structs and Classes in C#, and when to use one or the other. (The one sentence answer: use structs if you need value ...
23
votes
5answers
1k views
Why are public fields faster than properties?
I was poking around in XNA and saw that the Vector3 class in it was using public fields instead of properties. I tried a quick benchmark and found that, for a struct the difference is quite dramatic ...
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 ...
23
votes
1answer
2k views
Why is it necessary to call :this() on a struct to use automatic properties in c#?
If I define a struct in C# using automatic properties like this:
public struct Address
{
public Address(string line1, string line2, string city, string state, string zip)
{
Line1 = ...
22
votes
4answers
33k views
Initializing an Array of Structs in C#
How can I initialize an const / static array of structs as clearly as possible?
class SomeClass
{
struct MyStruct
{
public string label;
public int id;
};
const ...
21
votes
13answers
3k views
When are structs the answer?
I'm doing a raytracer hobby project, and originally I was using structs for my Vector and Ray objects, and I thought a raytracer was the perfect situation to use them: you create millions of them, ...
19
votes
4answers
831 views
Why are .NET value types sealed?
It's not possible to inherit from a C# struct. It's not obvious to me why this is:
Clearly you can't have a reference type that inherits from a value type; this wouldn't work
It doesn't sound ...
17
votes
6answers
747 views
Comparing structs to null [closed]
Possible Duplicate:
C# okay with comparing value types to null
I was working on a windows app in a multithreaded environment and would sometimes get the exception "Invoke or BeginInvoke ...
16
votes
9answers
21k views
Read binary file into a struct C#
I'm trying to read binary data using C#. I have all information about the layout of the data in the files I want to read. I'm able to read the data "chunk by chunk", i.e. getting the first 40 bytes of ...
15
votes
7answers
255 views
Should I use a struct or a class to represent a Lat/Lng coordinate?
I am working a with a geo-coding API and need to represent the coordinate of a returned point as a Latitude / Longitude pair. However, I am unsure whether to use a struct or a class for this. My ...
15
votes
5answers
553 views
C# struct new StructType() vs default(StructType)
This could be a silly question but I couldn't find any information on this.
Say I have a struc
public struct Foo
{
...
}
Is there any difference between
Foo foo = new Foo();
and
Foo foo = ...
15
votes
3answers
2k views
Automatic Properties and Structures Don't Mix?
Kicking around some small structures while answering this post, I came across the following unexpectedly:
The following structure, using an int field is perfectly legal:
struct MyStruct
{
...
14
votes
5answers
944 views
C#. Struct design. Why 16 byte is recommended size?
I read Cwalina book (recommendations on development and design of .NET apps).
He says that good designed struct has to be less than 16 bytes in size (for performance purpose).
My questions is - why ...
13
votes
3answers
353 views
How are the “primitive” types defined non-recursively?
Since a struct in C# consists of the bits of its members, you cannot have a value type T which includes any T fields:
// Struct member 'T.m_field' of type 'T' causes a cycle in the struct layout
...
13
votes
5answers
874 views
why non-static fields cannot be initialized inside structs
Consider this code block:
struct Animal
{
public string name = ""; // Error
public static int weight = 20; // OK
// initialize the non-static field here
...
13
votes
2answers
1k views
C# : How does this work : Unit myUnit = 5;
I just noticed that you can do this in C#:
Unit myUnit = 5;
instead of having to do this:
Unit myUnit = new Unit(5);
Does anyone know how I can achieve this with my own structs? I had a look at ...
12
votes
3answers
204 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, ...
12
votes
3answers
229 views
Method invocation on a struct?
When we invoke a method on a object, then the reference of the object is passed implicitly to the method.
So my question is what happens when a method is invoked on a struct ? Is it similar to ...
11
votes
4answers
272 views
Why structs cannot have destructors?
What is best answer on interview on such question you think?
I think I didn't find a copy of this here, if there is one please link it.
11
votes
3answers
579 views
Is there a way to create anonymous structs in C#?
There doesn't seem to be any way as anonymous types derive from object. But I thought I'd ask since much of the time we use anonymous types in simple query expressions to extract subsets of data to be ...
11
votes
5answers
5k views
Changing the value of an element in a list of structs
I have a list of structs and I want to change one element. For example :
MyList.Add(new MyStruct("john");
MyList.Add(new MyStruct("peter");
Now I want to change one element:
MyList[1].Name = "bob"
...
10
votes
4answers
138 views
Type-proofing primitive .NET value types via custom structs: Is it worth the effort?
I'm toying with the idea of making primitive .NET value types more type-safe and more "self-documenting" by wrapping them in custom structs. However, I'm wondering if it's actually ever worth the ...
10
votes
2answers
293 views
Using C# types to express units of measure
I'm trying to get what I call measurement units system by wrapping double into struct. I have C# structures like Meter, Second, Degree, etc. My original idea was that after compiler is inlined ...
10
votes
3answers
223 views
Can I create accessors on structs to automatically convert to/from other datatypes?
is it possible to do something like the following:
struct test
{
this
{
get { /*do something*/ }
set { /*do something*/ }
}
}
so that if somebody tried to do this,
test tt = ...
10
votes
11answers
2k views
C# Static class vs struct for predefined strings
A co-worker just created the following construction in C# (the example code is simplified). His goal was to shorten the notation for all predefined strings in the rest of the code.
public struct ...
9
votes
3answers
135 views
Do I have to define every single operator?
Suppose I have a struct with just one field:
public struct Angle
{
public static readonly double RadiansPerDegree = Math.PI / 180;
private readonly double _degrees;
public Angle(double ...
9
votes
4answers
321 views
Why is writing to a 24-bit struct not atomic (when writing to a 32-bit struct appears to be)?
I am a tinkerer—no doubt about that. For this reason (and very little beyond that), I recently did a little experiment to confirm my suspicion that writing to a struct is not an atomic operation, ...
9
votes
3answers
185 views
Is modifying a value type from within a using statement undefined behavior?
This one's really an offshoot of this question, but I think it deserves its own answer.
According to section 15.13 of the ECMA-334 (on the using statement, below referred to as resource-acquisition):
...
9
votes
10answers
2k views
Naming conventions for private members of .NET types
Normally when I have a private field inside a class or a struct, I use camelCasing, so it would be obvious that it's indeed private when you see the name of it, but in some of my colleagues' C# code, ...
9
votes
3answers
240 views
C#. Where struct methods code kept in memory?
It is somewhat known where .NET keeps value types in memory (mostly in stack but could be in heap in certain circumstances etc)...
My question is - where is the code of the struct?
If I have say 16 ...
9
votes
6answers
2k views
C# Struct No Parameterless Constructor? See what I need to accomplish
I am using a struct to pass to an unmanaged DLL as so -
[StructLayout(LayoutKind.Sequential)]
public struct valTable
{
public byte type;
public byte map;
...
9
votes
7answers
592 views
Destroying a struct object in C#?
I am a bit confused about the fact that in C# only the reference types get garbage collected.
That means GC picks only the reference types for memory de-allocation.
So what happens with the value ...
9
votes
5answers
533 views
Why do structs need to be boxed?
In C#, any user-defined struct is automatically a subclass of System.Struct and System.Struct is a subclass of System.Object.
But when we assign some struct to object-type reference it gets boxed.
...
9
votes
5answers
913 views
Why can TimeSpan and Guid Structs be compared to null?
I've noticed that some .NET structs can be compared to null.
For example:
TimeSpan y = new TimeSpan();
if (y == null)
return;
will compile just fine (the same with the Guid ...
9
votes
3answers
397 views
How can I simulate a C++ union in C#?
I have a small question about structures with the LayoutKind.Explicit attribute set. I declared the struct as you can see, with a fieldTotal with 64 bits, being fieldFirst the first 32 bytes and ...
9
votes
1answer
1k views
C# - How can I set the value of auto property backing fields in a struct constructor?
Given a struct like this:
public struct SomeStruct
{
public SomeStruct(String stringProperty, Int32 intProperty)
{
this.StringProperty = stringProperty;
this.IntProperty = ...
8
votes
1answer
116 views
sizeof() structures not known. Why?
Why can't I use sizeof() on simple structs?
eg:
private struct FloatShortPair
{
public float myFloat;
public short myShort;
};
int size = sizeof(FloatShortPair); //CS0233
error CS0233: ...
8
votes
6answers
552 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 ...
8
votes
9answers
1k views
C# why need struct if class can cover it?
Just wondering why we need struct if class can do all struct can and more? put value types in class has no side effect, I think.
EDIT: cannot see any strong reasons to use struct
A struct is similar ...
8
votes
2answers
840 views
How to read a Delphi Array of Fixed Sized Strings within a packed record in c#
I need to read a blob field from a database into a c# app.
However the blob field was written to the database by a Delphi App using the following method:
procedure WriteABlob(Blob : TBlobField; var ...
8
votes
6answers
2k views
Struct vs Class for long lived objects
When you need to have very small objects, say that contains 2 float property, and you will have millions of them that aren't gonna be "destroyed" right away, are structs a better choice or classes?
...
8
votes
4answers
27k views
Marshal C++ struct array into C#
I have the following struct in C++:
#define MAXCHARS 15
typedef struct
{
char data[MAXCHARS];
int prob[MAXCHARS];
} LPRData;
And a function that I'm p/invoking into to get an array of 3 ...
7
votes
4answers
108 views
How can I enforce a contract within a struct
I'd like to enforce a struct to always be valid regarding a certain contract, enforced by the constructor. However the contract is violated by the default operator.
Consider the following, for ...
7
votes
2answers
123 views
Is there a compact way of telling the C# compiler to use the base Equals and == operator?
I am fairly new to C#, and I come from a C++ background.
I have defined a struct, and the (Microsoft) compiler keeps popping up the error CA1815 "'GenericSendRequest' should override Equals"
I read ...