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.

learn more… | top users | synonyms (2)

3
votes
1answer
121 views

Why does an empty struct in C# consume memory

I always understood structs (value types) contain exactly the number of bytes as defined in the fields of the structure... however, I did some tests and there seems to be an exception for the empty ...
3
votes
4answers
129 views

int vs Int32. Are they really aliases? [duplicate]

After looking at the source code for Int32 while doing some research as to why my DataContractSerializer would not serialize my struct but when using int it works fine, I came across a curious bit of ...
0
votes
1answer
48 views

List of built-in .NET Framework types that are value types according to Type.IsValueType

I'd like a list of all the built-in .NET Framework types for which Type.IsValueType would return true. Is there a way I can generate that list (i.e. is there a way I can get a list of all the built-in ...
1
vote
5answers
100 views

Convert.ToBoolean fails with “0” value

I'm trying to convert the value "0" ( System.String ) to its Boolean representation, like: var myValue = Convert.ToBoolean("0"); // throwing an exception here I've looked at the MSDN page, and in ...
4
votes
4answers
144 views

Is there a cleaner way to represent this idiom in C#?

I am using a struct in a project, like so: struct Position { public int X { get; private set; } public int Y { get; private set; } // etc } I would like to add a method that allows me ...
2
votes
4answers
92 views

Upcasting in C#

Can we consider value type conversions like int to float conversion as upcasting and float to int as downcasting? I believe when we talk about upcasting and downcasting, we specifically mean reference ...
6
votes
1answer
233 views

using Scala 2.10.1 Value Types in Java

I am updating my 2.9.* project to 2.10. I have several classes for fundamental types (angles, lengths, etc) that seem like they are perfect candidates for value types. Unfortunately, my Java code ...
1
vote
2answers
62 views

How to get a reference to a string in Scala and modify the original string by modifying this reference?

As I understand, strings in Scala are value types: var a = "hello" var b = a b = "hi" - println(a) // hello println(b) // hi I want a to point to b and make code above print hi hi Is this ...
3
votes
5answers
170 views

If a struct is a value type why can I new it? [duplicate]

In C# structs are value types, but I am able to new them as if they are reference types. Why is this?
2
votes
1answer
57 views

Using “Equals” for valuetypes in C# seems not a good idea, is it?

I red that the default behavior for "Equals" in value types (structs) is using reflection to compare the content of the two values, so it's recommended to override the Equals operator for efficiency ...
2
votes
4answers
90 views

Boxing and Unboxing

I have a small doubt regarding Boxing and Unboxing in C#. int i=1; System.Int32 j = i; above code can be called as boxing?
6
votes
3answers
154 views

Custom structure/type that can be used with switch()

One of my projects has a value type/struct that represents a custom identifier string for a video format. In this case, it's going to contain a content type string, but that can vary. I've used a ...
0
votes
2answers
53 views

Why is Interfaces behaviour different when using value types and reference types

I did the following example in c# interface IChangeable { void Change(params Int32[] array); } struct SomeValueType : IChangeable { private Int32 m_X; ...
0
votes
0answers
59 views

Weird ValueType dynamic binding error in RazorEngine using structs

I am getting a weird dynamic binding error when using an anonymously-typed model in RazorEngine. I know that Razor uses dynamic when the model has an anonymous type because anonymous types are ...
4
votes
3answers
96 views

Details on what happens when a struct implements an interface

I recently came across this Stackoverflow question: When to use struct in C#? In it, it had an answer that said something a bit profound: In addition, realize that when a struct implements an ...
7
votes
5answers
132 views

How to work with value types in c# using properties?

I have a small class called Tank has one public member called Location which is a Rectangle(a struct). When I write: Tank t = new Tank(); t.Location.X+=10; everything works fine, and the tank ...
3
votes
1answer
108 views

Why can virtual System.Object members be called on unboxed value types (which have no base class)?

Consider this IL fragment (which was generated by Microsoft's C# compiler): .class public sequential ansi sealed beforefieldinit Foo extends [mscorlib]System.ValueType { … } .method private ...
3
votes
2answers
57 views

How to declare a value type in CIL: `.class value` or just `.class`?

I have taken a look at a C# struct FooStruct in ILDASM, and have seen the following: ILDASM here displays two differing declarations: one starting with .class value public (rear window & ...
0
votes
3answers
51 views

Is there a way I can prevent struct from being insantiated or can I have a class that will be copied?

Ok this is more curiosity than practical requirement. Let's say I have this class: public sealed class Entity { int value; Entity() { } public static implicit operator ...
0
votes
1answer
35 views

Where are the values of variables marked as 'dynamic' stored?

On .net, value types are stored on the stack and reference types on the heap (and it's reference on the stack). But if a variable is marked as dynamic, is this rule still valid based on the run-time ...
0
votes
2answers
123 views

Using Integer vs String for a “type” value (Database and class design)

I've been developing a few mobile games, in which those games fetch their data from a server-database. I'm used to storing "type" values as an integer identifier, and an enum in the client to ...
0
votes
4answers
62 views

Should I return -1 or int? or use out parameter to return result of a database action?

I'm writing public functions in one project for some database actions meant to be called from other projects. Straight to code, I can go for following approaches: public int GetCount(Apple apple, ...
61
votes
3answers
5k views

Changing the 'this' variable of value types

Apparently you can change the this value from anywhere in your struct (but not in classes): struct Point { public Point(int x, int y) { this = new Point(); X = x; Y = y; } ...
6
votes
3answers
134 views

Compiler not calling appropriate generic overload when passed with value type

I have public functions like this: public static T Get<T>(this Mango m, T defaultValue = default(T)) where T : class { //do something; return something; } public static T? ...
0
votes
2answers
83 views

Copy stucture's ref-type members by value

I have an structure and a class public class MyClass { public string name; } public struct MyStructure { public MyClass classValue; public int intValue; public MyStructure(MyClass ...
2
votes
2answers
201 views

array/object keys for hashtables in powershell

When creating a hash with an array key, How do i generate a key to look up the hash value. that is, without getting it from the hash's enumerator $a = @{"a" = "1" "b" = "2" ("c","c1") ...
5
votes
4answers
294 views

DateTime in VB.NET and C#.NET

I have two questions: Date and DateTime : Are they different or same in VB ? DateTime can be assigned Nothing in VB, where as it cannot be assigned null in C#. Being a structure it cannot be null. ...
2
votes
1answer
38 views

Is copying from an array of value-types faster then from an array of reference-types ? Why?

I made some tests that used Array.Copy to copy parts of an array to another. The first test used Array.Copy on an array of value-types struct ValueApple { public int Redness; } ValueApple[] a1 ...
1
vote
2answers
339 views

Stack and Heap memory allocation in .net

I've been reading different articles/pages on this topic and finally came to this article, which led me to a confusion! In the article, it's mentioned that Value Types always go where they were ...
0
votes
2answers
51 views

Value Type For ObjectIDGenerator Method In C#

Call ObjectIDGenerator method twice on reference type, the id values are same. test a = new test();//reference type bool isFirstTime; ObjectIDGenerator IDGenerator = new ObjectIDGenerator(); long ...
-1
votes
5answers
199 views

Does C++ treat Class Objects like value types if initialized without the new operator?

Sample code: MyItemType a; MyItemType b; a.someNumber = 5; b = a; cout << a.someNumber << endl; cout << b.someNumber << endl; b.someNumber = 10; cout << a.someNumber ...
1
vote
2answers
62 views

Size of the stack for value types

All say that value types are stored on the stack. But what is the size of the stack where value types are stored? Nobody explains about it.
1
vote
4answers
168 views

How / Why possible a value type derives from a reference type?

In .NET, all value types inherit from the class named System.ValueType. System.ValueType is a class, so it is a reference type. My question is how and why possible a value type derives from a ...
0
votes
4answers
95 views

Equals(…) does not return the same after boxing

See the following code: Private Function EqualsNothing(ByVal item As Object) As Boolean Return item.Equals(Nothing) End Function Console.WriteLine(0.Equals(Nothing)) ' True ...
0
votes
1answer
123 views

Using array of value_type for the stl::map

I have the following code: //MyClass.h class MyClass { typedef std::map<std::string, int> OpMap; static const OpMap::value_type opMap[OP_COUNT]; public: //methods }; ...
2
votes
2answers
129 views

Comparing value types cast to object

I have a method which returns an object, which could be one of a number of different data types, including strings, numbers and bools; and at some point I need to compare the equality of two values ...
-1
votes
4answers
315 views

Get reference of value type C# [duplicate]

Possible Duplicate: How do I assign by “reference” to a class field in c#? I want to copy the reference of my value type to another value type. Is it possible without using ...
0
votes
0answers
249 views

ASPxComboBox TextFormatString/ValueType

In Asp.net C#, I am quite confused about ValueType of ASPxComboBox My dropdown has ID(5 digits interger) and Name(String). I want to search the value using textbox. TextFormatString="{1} ({0})" , ...
0
votes
2answers
131 views

Trying to understand classes and struct

I have been reading MSDN "C# classes and struct" this morning to try to better understand these two concepts. A class is a reference type. When an object of the class is created, the variable to ...
18
votes
6answers
429 views

Reference types vs Nullable types ToString()

Could someone please be kind enough to explain why calling ToString() on an empty reference type causes an exception (which in my mind makes perfect sense, you cant invoke a method on nothing!) but ...
6
votes
1answer
68 views

Where to know/check: Int32 inherits from ValueType, ValueType inherits from Object?

I cannot find the relationships between these types using .Net reflector. Any idea?
2
votes
0answers
155 views

What are value type frameworks?

I often come across value type frameworks mentioned in relation to OPFs and ORMs targeting old Delphi versions prior to D2010, but I don't understand what they are. What are value type frameworks?
1
vote
3answers
102 views

What exactly is int in c#?

What exactly is int in C#? Is it a keyword, or is it a class derived from system.ValueTypes? If it is a keyword then how does the following lines compile int i = new int(); // If int is not a class ...
1
vote
2answers
53 views

How to determine if a type is a value type from CLI metadata?

I am using the IMetaDataImport API and and I need to determine if the type definitions in my assembly are value or reference types. I have not found any method in the API that explicitely provides ...
0
votes
2answers
211 views

Setter using different type in java

I need to write a setter for an array using spring's value annotation so it will come from properties file. private String[] aList; public String[] getAList() { return aList; } @value("a:b") public ...
0
votes
0answers
3k views

Change DataType of DataGridView

I have done a Tool that selects some data from a VFP-Database and inserts everything in a DataGrid. (until here everything works...) At this point I would like to change some values of a specific ...
2
votes
1answer
70 views

Efficient way to get name/MT of ValueTypes not listed in !dumpheap -stat

I'm working my way around the SOS commands and their output, but I noticed there doesn't seem to be a way to get really all types that are currently in use somehow. The best way so far is !dumpheap ...
4
votes
1answer
183 views

The fastest way to check if a type is blittable?

In my serialiser/deserialiser, I have the following snippet: if (element_type.IsValueType && collection_type.IsArray) { try { GCHandle h = ...
0
votes
1answer
259 views

C++ boost error: cannot convert const value type* (aka const wchar_t*) to const char* in initialization

I'm trying to search for a word from a file using the boost module and c++ and I'm stuck on this error message: error: cannot convert 'const value_type* {aka const wchar_t*}' to 'const char*' in ...
1
vote
1answer
86 views

Can't Set 'Value' of a custom ValueType

I have created a custom ValueType: Private Structure MyValueType Private _integerValue As Integer Public Sub New(initValue As Integer) _integerValue = initValue End Sub ...

1 2 3 4 5