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 ...
72
votes
14answers
25k views
What's the difference between struct and class in .Net?
I'm looking for a clear, concise and accurate answer.
Ideally as the actual answer, although links to good explanations welcome.
31
votes
8answers
3k views
Why is there no RAII in .NET?
Being primarily a C++ developer the absence of RAII (Resource Acquisition Is Initialization) in Java and .NET has always bothered me. The fact that the onus of cleaning up is moved from the class ...
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 ...
24
votes
12answers
4k views
Why don't structs support inheritance?
I know that structs in .NET do not support inheritance, but its not exactly clear why they are limited in this way.
What technical reason prevents structs from inheriting from other structs?
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 ...
19
votes
4answers
829 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 ...
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
4answers
397 views
Why does capturing a mutable struct variable inside a closure within a using statement change its local behavior?
Update: Well, now I've gone and done it: I filed a bug report with Microsoft about this, as I seriously doubt that it is correct behavior. That said, I'm still not 100% sure what to believe regarding ...
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
873 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
...
12
votes
3answers
203 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.
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
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
5answers
912 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 ...
8
votes
3answers
268 views
Does it make sense to define a struct with a reference type member?
Is there any sense in defining a struct with a reference type member (and not defining it as a class)? For example, to define this struct:
public struct SomeStruct
{
string name;
Int32 ...
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?
...
7
votes
4answers
140 views
Compiler gives error when struct is not initialized and if we try to access the property but not with variable
I have one observation about struct. When I declare a property in Struct and if I don't initialize the Struct then it gives me the below error - "Use of unassigned local variable empStruct"
PSeduo ...
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
124 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
159 views
Auto-properties and structs
I am wondering about the following C#-code:
struct Structure
{
public Structure(int a, int b)
{
PropertyA = a;
PropertyB = b;
}
public int PropertyA { get; set; }
...
6
votes
2answers
507 views
How to access structure in other program's memory?
I know how to import and use read/writeprocessmomory in C#.
I'm working on game trainer. I need to have "direct" access to other process memory casted to struct. I can use readprocessmemory or ...
6
votes
3answers
134 views
Differences betweens user created structs and framework structs in .NET
Why C# compiler does not allow you to compile this:
int a;
Console.WriteLine(a);
but does allow you to compile:
MyStruct a;
Console.WriteLine(a);
where MyStruct is defined as:
struct MyStruct
{
...
6
votes
2answers
231 views
Will struct modifications in C# affect unmanaged memory?
My gut reaction is no, because managed and unmanaged memory are distinct, but I'm not sure if the .NET Framework is doing something with Marshaling behind the scenes.
What I believe happens is:
When ...
6
votes
9answers
324 views
Extension method for Int32 in C#
I envisage the ability to write fluent code that adds meaning to numbers within codebases. Say you wanted a number to represent a distance in miles. You'd have something like:
Usage:
var result = ...
6
votes
5answers
165 views
Is copying performed when capturing a value-type into a lambda?
struct SomeStruct
{
public int Num { get; set; }
}
class Program
{
static Action action;
static void Foo()
{
SomeStruct someStruct = new SomeStruct { Num = 5 };
...
6
votes
4answers
1k views
Pinning an updateble struct before passing to unmanaged code?
I using some old API and need to pass the a pointer of a struct to unmanaged code that runs asynchronous.
In other words, after i passing the struct pointer to the unmanaged code, the unmanaged code ...
6
votes
4answers
956 views
C#: What needs to be overriden in a struct to ensure equality operates properly?
As the title says: do i need to override the == operator? how about the .Equals() method? Anything i'm missing?
6
votes
8answers
2k views
Is it safe for structs to implement interfaces?
I seem to remember reading something about how it is bad for structs to implement interfaces in CLR via C#, but I can't seem to find anything about it. Is it bad? Are there unintended consequences ...
5
votes
5answers
75 views
If I have three separate values that could all fit into 32 bits, does it make sense to use a uint to store them?
What I mean is, say I have a struct to represent some data and it looks like this:
struct LilStruct
{
public readonly short A;
public readonly byte B;
public readonly byte C;
public ...
5
votes
5answers
1k views
How to determine if a .NET Type is a custom struct?
How to write a simple method, that checks whether a concrete type is a custom struct (created with public struct { };) or not.
Checking Type.IsValueType is not enough, because it is also true to int, ...
5
votes
4answers
205 views
size of structures in .NET
My problem is very simple. My problem is to send a structure between a program in C to a C# program.
I made a struct in C#:
public struct NetPoint {
public float lat; // 4 bytes
public ...
5
votes
3answers
283 views
Blindly converting structs to classes to hide the default constructor?
I read all the questions related to this topic, and they all give reasons why a default constructor on a struct is not available in C#, but I have not yet found anyone who suggests a general course of ...
4
votes
1answer
72 views
Speed Issues with delegates and Structs
I've run into some speed issues with regards to structs and delegates - take the following console application code:
public delegate string StringGetter();
public class LocalString
{
public ...
4
votes
0answers
110 views
When a struct is really useful? [closed]
Possible Duplicate:
In C#, use of value types vs. reference types
I know the difference between Struct (Value-Type) and Class (Reference-Type).
But someone have a Real scenario where a ...
4
votes
3answers
111 views
What are good uses for mutable structs?
So I know that mutable structs/value types are considered 'evil' in .Net. So why is it possible to make them? What are some good uses for mutable structs that justify adding the feature to the CLR in ...
4
votes
7answers
130 views
When should I use a struct?
If I have a class and it's essentially just a bunch of variables - has no methods, really more of a storage space - is it better to convert it to a struct?
What is the "rule" for when to use a struct ...
4
votes
10answers
363 views
Struct v/s Class in C# - Please explain the behavior
Could someone please explain the behavior of this
class testCompile
{
/*
* Sample Code For Purpose of Illustration
*/
struct person
{
public ...
4
votes
1answer
49 views
.NET Structs that can be assigned constant values directly like built-in types
Can you make a struct that behaves like one of the built-in classes where you can assign the value directly without calling a property?
ex:
RoundedDouble count;
count = 5;
Rather than using
...
4
votes
3answers
122 views
Is it possible to create a reference-cycle using only value-types?
By way of explanation, take this value type in C#:
struct ObjRef
{
public object Value;
public ObjRef(object value) { Value = value; }
}
I can imagine an object graph where there are two ...
4
votes
8answers
315 views
Practical differences between classes and structs in .net (not conceptual)?
Whenever I tried to search about differences between classes and structs in C# or .net, I ended up with the conceptual overview of the two things like value type or the reference type, where the ...
4
votes
4answers
173 views
Overlaying several CLR reference fields with each other in explicit struct?
Edit: I'm well aware of that this works very well with value types, my specific question is about using this for reference types.
Edit2: I'm also aware that you can't overlay reference types and ...
4
votes
4answers
432 views
Integer array or struct array - which is better?
In my app, I'm storing Bitmap data in a two-dimensional integer array (int[,]). To access the R, G and B values I use something like this:
// read:
int i = _data[x, y];
byte B = (byte)(i >> ...
4
votes
5answers
361 views
Cannot assign property of struct returned from method
I got the following error which I translated from German:
error BC30068: The Expression is a value and cannot be target of an assignment.
I am trying to do the following:
sheet.Cells(row, ...
4
votes
6answers
664 views
How to identity a Type is struct
For a Type, there is a property IsClass, but how to know a Type is a Struct?
Sorry, I have to add some more information.
I am using C#.
Although IsValueType is a necessary condition, it is ...
4
votes
3answers
176 views
How does Returning a Struct as an Interface work?
The following code works, but I can't figure out what's going on memory-wise. Where and how is the struct value t copied?
interface ITest { void Hello(); }
struct STest : ITest
{
public void ...
4
votes
3answers
616 views
Sizes of structs on 32 bit and 64 bit
In the .NET struct design guidelines, it gives the maximum sensible size of a struct as 16 bytes. How do you determine how large your struct is, and is it affected by the architecture your program is ...