2
votes
5answers
111 views
C# - Get number of references to object.
I'm trying to write a simple Resource Manager for the little hobby game I'm writing. One of the tasks that this resource manager needs to do is unloading unused resources. I can th …
2
votes
2answers
25 views
vb.net: Get to resources of a referenced project
I have a project which contains all custom controls and images; we'll call it projectBase. Now I have created a windows forms project (project1) that references projectBase. I ne …
5
votes
4answers
257 views
What’s the low-level difference between a pointer an a reference?
If we have this code:
int foo=100;
int& reference = foo;
int* pointer = &reference;
There's no actual binary difference in the reference's data and the pointer's data. ( …
4
votes
7answers
152 views
Teaching References in C#
In a couple of weeks, I'll be teaching a class of first-year engineers the salient points of references in C# as part of their first-year programming course. Most of them have nev …
1
vote
2answers
42 views
Problems returning vector stack reference
Hello,
I am working on an application that builds a vector of structs for items in a given directory and returns a reference of the vector for it to be read, I receive the followi …
1
vote
2answers
27 views
error when passing a reference to a derived object in a method
In c# I am trying to implement a method which I can use to bind data to any control I pass to it (provided of course the control is derived from a databoundcontrol object)
given t …
148
votes
61answers
8k views
What are the best RSS feeds for programmers/developers?
I am looking for a breakdown of some really good RSS feeds. I have quite a few subscriptions with Google Reader, but lack many very good development/programming feeds. Would love …
2
votes
5answers
91 views
C# - Find output
Hi All,
I have the following C# code below.
Object first = 5;
Object second = 10;
second = first;
Console.WriteLine(first + " " + second);
Object a = 3;
Object b = a;
…
1
vote
3answers
119 views
How can I find the number of elements in hash of an arrayref?
$HoA{teletubbies} = [ "tinky winky", "dipsy", "laa-laa", "po" ];
How can I find the number of elements in this hash of arrayref(s)? It should return 4.
3
votes
5answers
103 views
In Perl, how do you access a value from a reference in an array of hashrefs?
I have an array of references to anonymous hashes. From the reference to that array, $allDirArray, I want to access the value corresponding to the key 'dir'. Currently I am getting …
1
vote
3answers
59 views
Assembly references for dymanically loaded DLLs
Hi,
I have 4 assemblies:
Tester.exe
ToyInterface.dll
ToyFactory.dll --> reference (ToyInterface.dll)
Toy.dll --> reference (ToyInterface.dll)
Tester.exe
internal ICollection& …
2
votes
8answers
287 views
[C++] getter and setter, pointers or references? and good syntax to use?
Hi,
I would like to know a good syntax for C++ getters and setters.
private:
YourClass *pMember;
the setter is easy I guess:
void Member(YourClass *value){
this->pMember …
1
vote
4answers
133 views
C++ linker issues
Hello there,
I have this:
a.cpp
int localfunction () { return 1; }
int local_symbol = localfunction();
b.cpp
void thirdfunction () {};
main.cpp
void main () { thirdfunc …
0
votes
1answer
71 views
Find all variables that point to the same memory in Visual Studio
In Visual Studio 2008, is there a way of finding all the variables that point to the same object as another variable?
So in the example below I would want to find out that ref1 an …
0
votes
1answer
23 views
Visual Studio 2008 - Build overwriting bin referenced dlls
I'm trying to figure out if what I'm experiencing in 2008 is new or something wrong with my installation.
We have multiple web application projects and multiple class libraries. …
