The reference-type tag has no wiki summary.
0
votes
1answer
53 views
Value types vs reference types - performance
I'm busy reading Jon Skeet's excellent book C# In Depth. He mentions in the section about boxing and unboxing that using boxed objects has a small overhead that could conceivably make a performance ...
2
votes
3answers
52 views
Why does the mutable StringBuilder behave like the immutable string when a reference is changed?
The "C# 4.0 IN A NUTSHELL" 4th edition book by the Albaharis states on page 249:
". . . calling object.ReferenceEquals guarantees normal referential equality."
So, I decided to test this out.
First ...
2
votes
5answers
94 views
How to detect whether the Property value(ReferenceType property) is changed in c#?
I have a Customer class, I would like to get notified when the user has changed the value of the Customer.CityInfo property.
public class City
{
public long Id {get;set;}
public string Code ...
3
votes
6answers
306 views
Reference to reference in C#?
As we all know, C# classes object are treated as references, so what happens when you pass a reference object as a reference to a method? Say we have:
public class A { ... }
and then:
public void ...
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;
...
2
votes
3answers
61 views
object is really reference type?
As far as I know Class and Object are reference type.
I have below method to Change the Value
public void ChangeValue(MyClass classobj)
{
classobj.Number = classobj.Number*2;
}
I invoke the ...
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
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") ...
-1
votes
5answers
136 views
Reference Type comparison in C#
I am trying to understand below problem. I want to know why B == A and C == B are false in the following program.
using System;
namespace Mk
{
public class Class1
{
public int i = ...
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
3answers
98 views
How to find out if an object is referencing another object?
I'm having trouble creating copies of my class instances from a dictionary of templates. It appears that MemberwiseClone() leaves some fields referenced to the dictionary's template fields. I'd like ...
8
votes
1answer
112 views
Why does Nullable<T> not match as a reference type for generic constraints [duplicate]
Possible Duplicate:
Nullable type as a generic parameter possible?
I came across a very weird thing with generic type constraints. I have a class like this:
public SomeClass<T> where ...
-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
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
2answers
103 views
Task parameters, do reference types point to same memory address on the heap
As far as i had understood, when you use a reference type as a parameter in a method, the value on the stack, is copied and the formal parameter therefore points to the same memory address, on the ...
0
votes
1answer
100 views
Calling ToString() on a Reference Type [closed]
Given two object arrays I need to compare the differences between the two (when converted to a string). I've reduced the code to the following and the problem still exists:
public void ...
4
votes
2answers
493 views
Dictionary.ContainsKey() - How does it work?
I've read the MSDN documentation on how Dictionary.ContainsKey() works, but I was wondering how it actually makes the equality comparison? Basically, I have a dictionary keyed to a reference type* and ...
1
vote
4answers
197 views
.NET: Are Dictionary values stored by reference or value
I have a Dictionary<int, Product>. If the same Product is added to more than one key is an new instance of that object stored for each key? Or just a reference to the original object?
This ...
1
vote
4answers
282 views
Where the combobox bound items are coming from?
May be it's a silly (or more than trivial) kinda question, but it seems i just don't know the answer. Here's the case -
I assigned a UserList as the ItemsSource of a combobox. So what i did ...
1
vote
3answers
138 views
In C#, string is a reference type but why it's not changing after manipulating it in another method [duplicate]
Possible Duplicate:
C# string reference type?
Say, I have a string called
string sample = "Initial value";
After passing to a method test()
public static void Test(string testString)
{
...
8
votes
5answers
731 views
Are event arguments passed by reference or value in C#?
A rather simple question (I think), but I don't seem to see an answer already. I know that some values are passed via value (like int and long), and others are passed by reference (like Strings) when ...
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 ...
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 ...
3
votes
3answers
95 views
Which is more performant, passing a method the entire object, or a property of that object?
Consider the following example.
I need to check if a CouponModel has a unique serial key.
I have two choices:
CouponModel model = GetFromSomewhere();
if (!CouponHasUniqueKey(model))
{
}
//or
if ...
0
votes
1answer
54 views
what's the memory location way while using a value type as a paramter
I know the general difference between value type and reference type, and I also know when using a value type in a reference type, this value type is actually on the heap.
ex:
class ClassA{
public ...
1
vote
6answers
518 views
C# make a reference to another string
as far as I know is string in C# is reference type :
so in the following code :
string a = "Hello";
string b = a;
b = "Hi";
'a' should equal to "Hi", but it still keep its value which is "Hello"???
...
1
vote
2answers
199 views
Value type create on Stack and reference type create on heap
Programming language books usually explain that value types are created on the stack, and reference types are created on the heap.
My question is Why.
1
vote
4answers
376 views
Why superclass object cannot be implicitly converted to subclass object in Java?
I have the following code:
class A {
}
class B extends A {
public void fB(){};
}
According to Java rule:
Case 1:
B b = new B();
A a = b;
((B)a).fB();
Case 2:
A a = new A();
B b = a;
...
1
vote
4answers
316 views
String behaving like a Value Type
I have just written a function and I don't understand why I'm getting the result I am:
private void ReplaceIfEmpty(string originalValue, string newValue)
{
if ...
2
votes
3answers
569 views
Why do we need reference types in .NET
Why do we need reference types in .NET?
I can think of only 1 cases, that it support sharing data between different functions and hence gives storage optimization.
Other than that I could not ...
0
votes
6answers
265 views
Why do I need to pass strings by reference to my swap function?
In C#, string is a reference type. Then,
Why do I need to have my swap function to have ref parameters?
swap(ref string first, ref string second) //swap(string first, string second) doesn't work
{
...
1
vote
4answers
1k views
Do interface variables have value-type or reference-type semantics?
Do interface variables have value-type or reference-type semantics?
Interfaces are implemented by types, and those types are either value types or reference types. Obviously, both int and string ...
6
votes
3answers
268 views
Inheriting from System.ValueType
Am I correct in believing that any object that doesn't inherit from System.ValueType must therefore by definition be a reference type?
I've been unable to find any conclusive documentation to backup ...
1
vote
2answers
322 views
VB.NET 4.0: ThreadStatic doesn't appear to be thread safe for my TdConnection property
Here's my code:
<ThreadStatic()>
Dim _GlobalConnection As TdConnection
Public Property GlobalConnection As TdConnection
Get
If _GlobalConnection Is Nothing Then
...
8
votes
6answers
612 views
Since Int32 is a value type why does it inherit .ToString()?
These are the docs about .ToString() that has prompted this question. They state:
Because Object is the base class of all reference types in the .NET
Framework, this behavior [.ToString()] is ...
1
vote
3answers
1k views
Dataset/datatable is a value type or reference type
Is datatable/dataset is value type of reference type?
But the most important question in my mind is- "how to find whether a type is a value type or reference type?"
8
votes
2answers
275 views
Why does Microsoft recommend skip implementing equality operator for reference types?
According to MSDN: Most reference types must not overload the equality operator, even if they override Equals. However, if you are implementing a reference type that is intended to have value ...
5
votes
5answers
293 views
Setting a type reference type to null doesn't affect copied type?
Why does this produce "0" ?
object a = 0;
object b = a;
a = null;
Console.WriteLine(b.ToString()); // Produces "0"
Console.Read();
Doesn't b point to the same location and setting a = null ...
1
vote
2answers
155 views
Reference-Type passed by ref to another method does not return with updated values
I'm facing the following issue:
I need to make a call from my controller into my domain layer; which calls a web service method that takes in the request by reference (ref).
Controller code:
...
23
votes
8answers
1k views
Why are delegates reference types?
Quick note on the accepted answer: I disagree with a small part of Jeffrey's answer, namely the point that since Delegate had to be a reference type, it follows that all delegates are reference types. ...
0
votes
2answers
70 views
.NET primitives seem half in the value world and half in the reference world
If value types are objects (I've seen that ValueType does indeed inherit from Object) why do they not behave as Objects? They can't be null, so it would seem they don't have a reference, and they must ...
0
votes
4answers
290 views
Are Mutex objects passed by reference?
I am constructing several objects from a Class and using a particular function from these classes to start Threads. Now the Class containing the member function from where these objects are ...
5
votes
2answers
542 views
How can I check if a generic method parameter is a value type? [duplicate]
Is there a way to check if a variable is value type of reference type?
Imagine:
private object GetSomething<T>(params T[] values)
{
foreach (var value in values)
{
bool is ...
1
vote
1answer
51 views
Problem with understanding reference types
I get from WCF service ObservableCoolection
MyTypes = e.Result;
ObservableCollection<MyType> MyTypes // it's a property of _myTypes
<telerik:RadGridView x:Name="grdSrL" ...
2
votes
4answers
1k views
Does passing Reference Types using ref save memory?
In C#, the parameters to a method can be either reference types or value types. When passing reference types, a copy of the reference is passed. This way, if inside a method we try to reassign the ...
7
votes
3answers
2k views
In C# , Are Value types mutable or immutable ?
Value types behavior shows that whatever value we are holding cannot be changed through some other variable .
But I still have a confusion in my mind about what i mentioned in the title of this post ...
1
vote
3answers
294 views
why string behaves as value type even though it is a reference type in c# [duplicate]
Possible Duplicate:
In C#, why is String a reference type that behaves like a value type?
I know string is a reference type since string can be very large and stack is only 1 mb . But ...
3
votes
2answers
826 views
C# Confused with a list inside a struct (value type vs reference type)
So I found out today that structs and classes act differently when used to assign to variables in C#.. It's to my understanding that when I assign a struct to a variable, the variable stores a copy of ...





