2
votes
9answers
412 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 …
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.
1
vote
1answer
49 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 cl …
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 …
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
3answers
124 views
How do I pass reference types between webservices?
I'm having a bit of difficulty passing a reference type between webservices.
My set up is as follows.
I have a console application that references two web-services:
WebServiceO …
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 …
0
votes
3answers
56 views
What’s the size of a reference on the CLR
I was (purely out of curiosity) trying to find out what the size of an actual reference is when an allocation is made on the stack.
After reading this I still don't know (this ans …
1
vote
3answers
218 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 bui …
4
votes
1answer
128 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 obje …
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 …
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 …
0
votes
2answers
80 views
Nullable<> as TModel for ViewPage
What are the possible reasons what Nullable<> types are disallowed to be passed as TModel parameter of System.Web.Mvc.ViewPage<TModel> generic? This could be handy some …
1
vote
2answers
129 views
get attribute of a property in .NET after passing the property to a function as ref
is it possible to pass a property eg. Person.Firstname by reference to a function and then still be able to read the attributes of Person.Firstname through this reference type?
so …
2
votes
7answers
314 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 d …
