DLL References (New developer)

  • Thread starter Thread starter Green Taylor
  • Start date Start date
G

Green Taylor

I have two projects. Project A and Project B.
In project A I have added Reference of Project B.
And in Project B I have added Reference of Project A.

It was not possible in framework prior to Framework 2.0.
It works great for me.
My question is, is it ok to add reference like this. Is this against any
programing standard.
Please give me some suggestion or advices, as I am very new to software
development.

Thanks
Green
 
it should not be possible at all!

try to clean up all dll and recompile.
neither project would be able to compile as it requires the other.

if you manage to compile that I suspect it involves project A or B to be
linked to a previous version of the other project.
 
I am not adding project reference(which is not possible). I am just adding
the dll reference to the project.

Green
 
I am not adding project reference(which is not possible). I am just adding
the dll reference to the project.
OK, right.....
how do you build after a clean?
anyway doing this way: it's bad.
better put all the code in the same DLL or remove the interdependency.

if one is MC++ and the other C#, you stuck with writing both (as a single
DLL) in MC++
 
Back
Top