Top "Value-type" questions

In computer science, the term value type is commonly used to refer to one of two kinds of data types: Types of values or Types of objects with deep copy semantics.

Is int? a value type or a reference type?

This question is more about adding a ? to a value type than about int? In C# an int is a …

c# int value-type reference-type
Why value types can't be null

I know that it is possible to have Nullable value types that wraps the value type and gives ability to …

c# .net null clr value-type
Extension methods defined on value types cannot be used to create delegates - Why not?

Extension methods can be assigned to delegates that match their usage on an object, like this: static class FunnyExtension { public …

c# .net extension-methods delegates value-type