Tagged Questions
The reference-type tag has no wiki summary.
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.
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 ...
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. ...
10
votes
6answers
823 views
Why java has “String” type and not “string”?
Wrapper class are just fine and their purpose is also well understood. But why do we omit the primitive type ?
9
votes
5answers
335 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?
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
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
3answers
271 views
Specializing function template for reference types
Why is the output of this code :
#include <iostream>
template<typename T> void f(T param)
{
std::cout << "General" << std::endl ;
}
template<> void f(int& ...
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
5answers
163 views
Uniquely Identifying Reference Types in the Debugger
I come from a C++ background, so apologies if this is a non-C# way of thinking, but I just need to know. :)
In C++ if I have two pointers, and I want to know if they point to the same thing, I can ...
7
votes
7answers
323 views
In C#, is there a clean way of checking for multiple levels of null references
For example, if I want to call the following:
person.Head.Nose.Sniff()
then if I want to be safe I have to do the following:
if(person != null)
if(person.Head != null)
if(person.Head.Nose ...
6
votes
2answers
139 views
Why does Microsoft recommend skip implementing equality operator for reference types?
According to MSDN: Most reference types must not overload the equality operator, even if they override Equals. However, if you are implementing a reference type that is intended to have value ...
6
votes
5answers
249 views
“ref” keyword and reference types
someone in my team stumbled upon a peculiar use of the ref keyword on a reference type
class A { /* ... */ }
class B
{
public void DoSomething(ref A myObject)
{
// ...
}
}
...
6
votes
2answers
396 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
3answers
651 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 ...
5
votes
2answers
194 views
In C# , Are Value types mutable or immutable ?
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 ...
5
votes
1answer
219 views
Detailed Explanation of Variable Capture in Closures
I've seen countless posts on how variable capture pulls in variables for the creation of the closure, however they all seem to stop short of specific details and call the whole thing "compiler magic".
...
5
votes
9answers
1k views
When to use primitive and when reference types in Java
In which case should you use primitive types(int) or reference types (Integer)?
This question sparked my curiosity.
5
votes
7answers
302 views
Teaching References in C#
In a couple of weeks, I'll be teaching a class of first-year engineers the salient points of references in C# as part of their first-year programming course. Most of them have never programmed ...
5
votes
9answers
2k views
Use cases for boxing a value type in C#?
There are cases when an instance of a
value type needs to be treated as an
instance of a reference type. For
situations like this, a value type
instance can be converted into a
reference ...
4
votes
5answers
728 views
Passing string ByVal in VB.NET AND C#
So strings are reference types right? My understanding is a reference to the string in the heap is passed even when you pass the string ByVal to a method.
Sooo.....
String myTestValue = ...
4
votes
2answers
263 views
typeof(System.Enum).IsClass == false
Founded that:
typeof(System.Enum).IsClass == false
It's become strange that System.Enum has also .IsValueType == false, but Reflector shows that it is really just an abstract class.
System.Enum is ...
4
votes
2answers
799 views
Cloning a C# Reference Type to a Derived Reference Type
Coming from a C++ background, I am finding cloning of objects in C# a little hard to get used to. To clear up some of my confusion, I am looking for an elegant way to clone an object of a base type to ...
4
votes
9answers
900 views
C# supports value types and reference types, but are they all objects?
I know C# has both value and reference types, but how can you do a this:
int age = 100;
string blah = age.ToString();
If age is a value type, how does it have a ToString method on it? Does it get ...
3
votes
2answers
129 views
C# Confused with a list inside a struct (value type vs reference type)
So I found out today that structs and classes act differently when used to assign to variables in C#.. It's to my understanding that when I assign a struct to a variable, the variable stores a copy of ...
3
votes
2answers
148 views
What does Python treat as reference types?
I assumed sequence types in Python were value types. It turns out they're reference types (Meaning that the value of a variable won't be copied when assigned to a new variable, but referenced). So now ...
3
votes
1answer
555 views
Can AutoMapper Map Between a Value Type (Enum) and Reference Type? (string)
Weird problem - i'm trying to map between an enum and a string, using AutoMapper:
Mapper.CreateMap<MyEnum, string>()
.ForMember(dest => dest, opt => opt.MapFrom(src => ...
3
votes
2answers
436 views
Code Contracts, null checks and value/reference types
Updated post: In order to avoid confusion about what I am and am not doing, I have edited this post radically to include a complete example of the code that causes this problem. In order to make this ...
3
votes
4answers
185 views
Would there be benefits to a struct String in .Net?
Note: This is a hypothetical discussion. I don't actually want to implement a struct String.
The .Net String class could be a value type (a struct), because it is immutable and has few members. But ...
3
votes
8answers
987 views
c# readonly object
Is there any way to return a readonly instance of an object?
public class Person
{
public String FirstName { get; set; }
public String LastName { get; set; }
}
public class SomeClass
{
...
3
votes
4answers
175 views
Reference and Value types scenario
I've been playing around trying to thoroughly understand Reference and Value types. Just when I thought I had it, I came across this scenario...
I created a class that would contain a single object.
...
3
votes
4answers
1k views
C#, Copy one bool to another (by ref, not val)
I am at a brick wall here. Is it possible to copy one bool to the ref of another. Consider this code . . .
bool a = false;
bool b = a;
b is now a totally seperate bool with a value ...
3
votes
3answers
1k views
Implementing Nullable Types in Generic Interface
So in a previous question I asked about implementing a generic interface with a public class and bingo, it works. However, one of the types I'm looking to pass in is one of the built in nullable types ...
2
votes
5answers
182 views
Setting a type reference type to null doesn't affect copied type?
Why does this produce "0" ?
object a = 0;
object b = a;
a = null;
Console.WriteLine(b.ToString()); // Produces "0"
Console.Read();
Doesn't b point to the same location and setting a = null ...
2
votes
2answers
112 views
How can I check if a generic method parameter is a value type?
Is there a way to check if a variable is value type of reference type?
Imagine:
private object GetSomething<T>(params T[] values)
{
foreach (var value in values)
{
bool is ...
2
votes
3answers
61 views
Assigning a variable of a struct that contains an instance of a class to another variable
In my understanding, assigning a variable of a struct to another variable of the same type will make a copy. But this rule seems broken as shown on the following figure. Could you explain why this ...
2
votes
5answers
62 views
Slight confusion over reference types and value types in the C# spec
I'm trying to digest this statement in the C# spec, which states (ยง4.2):
A reference type is a class type, an interface type, an array type, or a delegate type.
I know that structs can implement ...
2
votes
4answers
134 views
Specify that an interface can only be implemented by reference types C#
If I declare an interface in C#, is there any way I can explicitly declare that any type implementing that interface is a reference type?
The reason I want to do this is so that wherever I use the ...
2
votes
5answers
140 views
Type of reference type with value null?
According to:
http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html
4.5.2 Variables of Reference Type
A reference type can hold a null reference.
Is it possible to retrieve the ...
2
votes
5answers
358 views
Create reference to new object
I am just learning C++, and I've come across the following conundrum:
As a C++ newbie, I've read that using reference instead of pointers (when possible) is generally a good idea, so I'm trying to ...
2
votes
3answers
574 views
Why is string a reference type?
Why is string a reference type, even though it's normally primitive data type such as int, float, or double.
2
votes
5answers
623 views
Quick question about a reference type key in a generic dictionary in .Net
I have a mutable class that I'm using as a key to a generic dictionary. Two keys should be equal only if their references are equal.
From what I've read, in this case, I don't need to override Equals, ...
2
votes
5answers
216 views
Reference question: when are two objects equal?
I have a Vector class, and I was testing the following unit test (using nUnit).
1 Vector test1 = new Vector(new double[] { 6, 3, 4, 5 });
2 Vector test2 = test1;
3 Assert.AreEqual(test1, test2, ...
2
votes
7answers
640 views
What is the fastest way to find if an array of byte arrays contains another byte array?
I have some code that is really slow. I knew it would be and now it is. Basically, I am reading files from a bunch of directories. The file names change but the data does not. To determine if I have ...