Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (2)

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.
46
votes
4answers
559 views

Boxing Occurrence in C#

I'm trying to collect all of the situations in which boxing occurs in C#: Converting any value type to System.Object type: struct S { } object box = new S(); Converting any value type to ...
41
votes
7answers
20k views

In C#, why is String a reference type that behaves like a value type?

A String is a reference type even though it has most of the characteristics of a value type such as being immutable and having == overloaded to compare the text rather than making sure they reference ...
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 ...
19
votes
7answers
328 views

Why are delegates reference types?

Quick note on the accepted answer: I disagree with a small part of Jeffrey's answer, namely the point that since Delegate had to be a reference type, it follows that all delegates are reference types. ...
18
votes
8answers
657 views

In .NET, using “foreach” to iterate an instance of IEnumerable<ValueType> will create a copy? So should I prefer to use “for” instead of “foreach”?

In .NET, using "foreach" to iterate an instance of IEnumerable will create a copy? So should I prefer to use "for" instead of "foreach"? I wrote some code to testify this: struct ...
15
votes
11answers
2k views

Are value types immutable by definition?

I frequently read that structs should be immutable - aren't they by definition? Do you consider int to be immutable? int i = 0; i = i + 123; Seems okay - we get a new int and assign it back to i. ...
13
votes
7answers
479 views

In C#, why can't I modify the member of a value type instance in a foreach loop?

I know that value types should be immutable, but that's just a suggestion, not a rule, right? So why can't I do something like this: struct MyStruct { public string Name { get; set; } } public ...
13
votes
3answers
356 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 ...
12
votes
3answers
477 views

Test if an object is an Enum

I would like to know if 'theObject' is an enum (of any enum type) foreach (var item in Enum.GetValues(theObject.GetType())) { //do something }
12
votes
4answers
946 views

Does calling a method on a value type result in boxing in .NET?

I was just participating in this question: http://stackoverflow.com/questions/436211/is-everything-in-c-an-object And one poster (in comments of accepted answer) seemed to think that performing a ...
11
votes
3answers
282 views

.NET: Value type inheritance - technical limitations?

I'm wondering if there are any technical reasons for why .NET value types do not support inheritance (disregarding interface implementation)... I can't at first glance think of a reason why value ...
11
votes
4answers
463 views

Why can iterators in structs modify this?

I discovered that iterator methods in value types are allowed to modify this. However, due to limitations in the CLR, the modifications are not seen by the calling method. (this is passed by value) ...
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
2answers
141 views

Comparing a generic against null that could be a value or reference type?

public void DoFoo<T>(T foo) where T : ISomeInterface<T> { //possible compare of value type with 'null'. if (foo == null) throw new ArgumentNullException("foo"); } I'm purposely ...
10
votes
2answers
2k views

Extension methods defined on value types cannot be used to create delegates - Why not?

Extension methods can be assigned to delegates that match their usage on an object, like this: static class FunnyExtension { public static string Double(this string str) { return str + str; } ...
9
votes
4answers
322 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
5answers
336 views

In C#, use of value types vs. reference types

My questions are: When should we use value types and when reference types? What are the advantages and disadvantages of one over other? What if one uses reference types everywhere? Is there any harm ...
9
votes
5answers
1k views

Is Guid considered a value type or reference type?

Guids are created using the new keyword which makes me think it's a reference type. Is this correct? Guid uid = new Guid(); Are Guids stored on the heap?
9
votes
6answers
1k views

.NET Parameter passing - by reference v/s by value

I'm trying to validate my understanding of how C#/.NET/CLR treats value types and reference types. I've read so many contradicting explanations I stil This is what I understand today, please correct ...
9
votes
7answers
537 views

In C# are the terms “Primitive” and “Literal” interchangeable?

A discussion earlier today led me to question whether or not my understanding of primtives and literals is correct. My understanding is that a literal type is specifically a type which can have a ...
9
votes
4answers
1k views

How do ValueTypes derive from Object (ReferenceType) and still be ValueTypes?

C# doesn't allow structs to derive from classes, but all ValueTypes derive from Object. Where is this distinction made? How does the CLR handle this?
9
votes
6answers
6k views

How to make a value type nullable with .NET XmlSerializer?

Let's suppose I have this object: [Serializable] public class MyClass { public int Age { get; set; } public int MyClassB { get; set; } } [Serializable] public class MyClassB { public int ...
8
votes
6answers
317 views

Since Int32 is a value type why does it inherit .ToString()?

These are the docs about .ToString() that has prompted this question. They state: Because Object is the base class of all reference types in the .NET Framework, this behavior [.ToString()] is ...
8
votes
4answers
116 views

Pattern for Creating a Simple and Efficient Value type

Motivation: In reading Mark Seemann’s blog on Code Smell: Automatic Property he says near the end: The bottom line is that automatic properties are rarely appropriate. In fact, they are only ...
8
votes
8answers
336 views

Why String is Value type although it is a class not a struct?

Take the following example: string me = "Ibraheem"; string copy = me; me = "Empty"; Console.WriteLine(me); Console.WriteLine(copy); The output is: Empty Ibraheem Since it is class type (i.e. not ...
8
votes
2answers
130 views

Why are anonymous types in .NET implemented as reference type?

Because an anonymous type is readonly anyway, is would be more efficient if they implemented them as structs so that linq queries doesn't need to create tons of temporary objects: // This doesn't ...
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
5answers
298 views

Dilemma with using value types with `new` operator in C#

When operator new() is used with reference type, space for the instance is allocated on the heap and reference variable itself is placed on the stack. Besides that, everything within the instance of ...
8
votes
5answers
418 views

Why is boxing a primitive value-type in .NET uncached, unlike Java?

Consider: int a = 42; // Reference equality on two boxed ints with the same value Console.WriteLine( (object)a == (object)a ); // False // Same thing - listed only for clarity ...
8
votes
6answers
225 views

Is there any other reason beside performance and readiblity of why System.String is a reference type instead of value type?

Why was String designed as a reference type instead of value type? From the modeling perspective I would have modeled it as a value type since it represents something without identity. It doesn't ...
8
votes
1answer
198 views

Returning a value type from a property

I'm getting confused with what happens on the stack and heap in respect to value type properties in classes. My understanding so far: When you create a class with a structure (value type) like this: ...
8
votes
4answers
2k views

How to determine if a string is a number in C#

I am working on a tool where I need to convert string values to their proper object types. E.g. convert a string like 2008-11-20T16:33:21Z to a DateTime value. Numeric values like 42 and 42.42 must be ...
7
votes
1answer
231 views

Generic contraint on T to be reference type and value type simulataneously?

I have a problem with understanding how generic constraints work. I think I am missing something important here. I have enclosed my questions in the comments and would be grateful for providing some ...
7
votes
6answers
374 views

When does using C# structs (value types) sacrifice performance?

I have been playing with structs as a mechanism to implicitly validate complex value objects, as well as generic structs around more complex classes to ensure valid values. I am a little ignorant as ...
7
votes
5answers
162 views

Weird behaviour with conditional operator in .Net

This has me pretty stumped. Maybe I'm too tired right now. Rectangle rectangle = new Rectangle(0, 0, image.Width, image.Height); Rectangle cropArea = inputArea == null ? rectangle : ...
7
votes
3answers
108 views

What is the difference between C# & CLI when it comes in with value types and constructors?

I read recently that the C# and CLI standards define different ways to handle value types and constructors. According to the CLI specification value types can't have parameterless constructors, ...
7
votes
3answers
401 views

Layout of .NET value type in memory

I have the following .NET value types: [StructLayout(LayoutKind.Sequential)] public struct Date { public UInt16 V; } [StructLayout(LayoutKind.Sequential)] public struct StringPair { public ...
7
votes
4answers
211 views

Variable number of arguments without boxing the value-types?

public void DoSomething(params object[] args) { // ... } The problem with the above signature is that every value-type that will be passed to that method will be boxed implicitly, and this is ...
7
votes
6answers
483 views

Is it possible to clone a ValueType?

Is it possible to clone an object, when it's known to be a boxed ValueType, without writing type specific clone code? Some code for reference List<ValueType> values = new List<ValueType> ...
6
votes
3answers
111 views

Why can't I write Nullable<Nullable<int>>?

The definition of Nullable<T> is: [SerializableAttribute] public struct Nullable<T> where T : struct, new() The constraint where T : struct implies that T can only be a value type. So I ...
6
votes
1answer
93 views

Confused with little used Value Type initialization

The following code is illegal: public struct MyStruct { public MyStruct(int a, int b) { this.a = a; this.b = b; } public int a; public int b; } //now I want to ...
6
votes
3answers
135 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
5answers
318 views

Set an enum to its default value

I'm sure this is fairly trivial but I can't get it right. public static string DoSomething(this Enum value) { if (!Enum.IsDefined(value.GetType(), value)) { // not a valid value, ...
6
votes
2answers
401 views

Is creating a C# generic method that accepts (nullable) value type and reference type possible?

I want to create a simple method that accepts both value type and reference type parameters, i.e. int is value, and string is reference. So this is what I start with: public bool ...
6
votes
5answers
558 views

How to store a reference to an integer in C#? [closed]

Possible Duplicate: How do I assign by “reference” to a class field in c#? Hello everyone - tell me how to make this work? Basically, I need an integer reference type (int* ...
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
3answers
942 views

Using NHibernate ICompositeUserType with a value type

I have a domain model object which has properties of type System.DateTimeOffset. I'm using a database which doesn't support this type natively, so I'm planning to store it using a column of type ...
6
votes
3answers
653 views

Can you have a Class in a Struct

Is it possible in C# to have a Struct with a member variable which is a Class type? If so, where does the information get stored, on the Stack, the Heap, or both?
5
votes
3answers
124 views

Inheriting from System.ValueType

Am I correct in believing that any object that doesn't inherit from System.ValueType must therefore by definition be a reference type? I've been unable to find any conclusive documentation to backup ...

1 2 3 4