3
votes
3answers
118 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?
3
votes
3answers
169 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 …
1
vote
4answers
158 views
C#, Copy one bool to another (by ref, not val)
Hi folks.
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 tota …
0
votes
3answers
201 views
Convert an array of different value types to a byte array
This is what I've come up with so far, but it doesn't seem very optimal, any ideas on better approaches?
public void ToBytes(object[] data, byte[] buffer)
{
byte[] obytes;
…
0
votes
2answers
53 views
How to distinguish that a type is ValueType Or RefereceType?
Hi
some simple types like int, string , ....are easy to realize that they are ValueTypes Or RefrenceTypes. But I wanna to know is there any way to distinguish?
5
votes
11answers
370 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 a …
5
votes
6answers
245 views
Operations on arbitrary value types
This article describes a way, in C#, to allow the addition of arbitrary value types which have a + operator defined for them. In essence it allows the following code:
public T Add …
