Tagged Questions

3
votes
3answers
128 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?
0
votes
7answers
104 views

.NET strings and reference type parameters

I was wondering if any one could explain this code to me... public void SomeMethod() { StringBuilder sb = new StringBuilder(); AppendFoo(sb); String foo = sb.ToString(); // foo is "foo" …