2
votes
9answers
410 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 …
4
votes
7answers
1k views
How to make a value type nullable with XmlSerializer in C# - serialization
Hi,
let's suppose I have this object:
[Serializable]
public class MyClass
{
public int Age { get; set; }
public int MyClassB { get; set; }
}
[Serializable]
public class M …
19
votes
12answers
2k 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.
4
votes
7answers
159 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 nev …
1
vote
5answers
75 views
Is it possible to change the default value of a primitive data type?
I recently created a generic Matrix<T> class that acts as a wrapper around a List<List<T>> collection. As far as I can tell, this class is working perfectly. I am …
0
votes
2answers
245 views
Definitions of “primitive”, “value type”, “struct”, “class”, “wrap” in Java and C#
I have been trying to understand the use of "primitives" in Java and C# and the difference between them (if any). I have asked a series of questions on SO and some of the answers s …
3
votes
2answers
81 views
Is there a difference between declaring and constructing a value type object?
I've been working in .NET for some time now, but occasionally I still get confused by a disparity between the framework and my prior experience in C++.
In .NET, all objects are ei …
3
votes
8answers
467 views
C# supports value types and reference types, but are they all objects?
Hi,
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 m …
0
votes
2answers
62 views
How to determine if type needs to be boxed?
MSDN docs say that only value types need boxing, but this does not apply to string, which is a value type and does not need to be boxed. I initially tried Type.IsValueType, but sin …
0
votes
1answer
57 views
Performance of Sorting Reference Type vs Value Types
We were trying to sort a collection of FileInfo objects in .NET. We implemented our IComparer to ensure that FileInfo objects were sorted based on our criteria. We then noticed t …
1
vote
1answer
43 views
Object Extension Methods on Value Types
Hi,
I have an Extension Method:
public static string ToDelimenatedString(this object[] array, string delaminator) {...}
The Extension is applied to reference types but not valu …
11
votes
8answers
923 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 …
1
vote
2answers
110 views
Mutable wrapper of value types to pass into iterators
I'm writing an iterator that needs to pass around a mutable integer.
public IEnumerable<T> Foo(ref int valueThatMeansSomething)
{
// Stuff
yield return ...;
}
Thi …
1
vote
2answers
175 views
C# accessing value-type properties like variables
hey there!
I'd like to know whether the following is possible with C# properties.
I have a class "Transform" that holds a 4x4 matrix in a private member field. Now I want to crea …
11
votes
7answers
2k 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 …
