0
votes
1answer
19 views
What is the correct way to add references to libraries in C++/CLI?
I am writing a lib in C++/CLI, and one of the functions is returning a System::Drawing::Color object. I added System.Drawing as a project reference. It works.
I then created a test application to …
1
vote
5answers
184 views
Is C++ the single language that have both pointers and references?
Amongst the programming languages I know and those I've been exposed to, C++ looks like the only one to have both pointers and references. Is it true?
7
votes
4answers
127 views
C++ by-reference argument and c linkage
Hi,
I have encountered a working (with XLC8 and MSFT9 compilers) piece of code, containing a c++ file with a function defined with c linkage and a reference argument. This bugs me, as references are …
0
votes
0answers
19 views
Visual Studio autoclean?
Hello,
I have a solution with multiple projects - executable, library, and others(unimportant right now). Library contains EF entity classes and executable uses them. When I'm working on some code …
1
vote
5answers
190 views
Do pointers in java actually exist?
I thought I'm pretty experienced in java, but it seems that's not really the case, I just noticed something yesterday, something I used before but never really realised what it did. I googled but …
6
votes
8answers
270 views
Difference between pointer to a reference and reference to a pointer
What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++?
Where should one be preferred over the other?
0
votes
1answer
22 views
System.TypeLoadException (WebPartsZone) in mono
I load a user control in a web page which throws an exception:
this.LoadControl(someusercontrol); // throws TypeLoadException
The details :
System.Reflection.ReflectionTypeLoadException: The …
0
votes
2answers
34 views
Convince entity context (EF1) to populate entity references
I have an entity with self reference (generated by Entity Designer):
public MyEntity: EntityObject
{
// only relevant stuff here
public int Id { get...; set...; }
public MyEntity Parent { …
0
votes
2answers
28 views
How do I determine where DLL is referenced?
I have just deployed my VB.net VS2008 winforms solution to the test server.
When I did I got an error:
Unable to install or run the application. The application requires that assembly
…
1
vote
1answer
27 views
MSBuild: Conditional Construct (Project Reference | File Reference)
I´m still trying to eleminate the need of a cobol compiler in a Project with cobol-Projects in it.
Is it possible to create following build behaviour:
If the Configuration is Debug then use …
1
vote
4answers
34 views
Changes to one variable propagates to another…
For example I have two ArrayCollection's - firstAC and secondAC. If I do secondAC = firstAC, and than I make changes to secondAC (prehaps put a filterfunction on it) it somehow propagates to firstAC, …
0
votes
1answer
25 views
IronRuby references conflict with System.Linq ?
Using Visual Studio 2010, when I add the four IronRuby references to an existing project that uses Linq in several methods, the project won't compile due to not being able to find System.Linq all of a …
0
votes
3answers
68 views
FxCop: control assembly referenced by analyzed assembly not being loaded
FWIW: Windows 7 64bit, Compact Framework v3.5, FxCop v1.36 (running fxcopcmd.exe)
I'm having problems getting FxCop 1.36 to run correctly. I'm analyzing a compact framework application with the …
1
vote
2answers
35 views
How to configure Visual Studio to create all projects including a reference to a specific dll?
I am tired of adding a reference to System.ServiceModel in each project I create. Is there any way to automate this?
0
votes
0answers
15 views
Linking with Apache XML-Security causes unresolved references
I'm trying to build a project on Linux with GCC where one module (my own) require XML-Security (Apache's) as well. However, when linking, I get unresolved references to some functions that are in the …
