Internal Compiler Error - URGENT

  • Thread starter Thread starter gkustas
  • Start date Start date
G

gkustas

I am getting the internal compiler errors (CS0586) in my csharp project
- about 15-20 in various "stages" (i.e "COMPILE", "BIND"). I have been
beating myself up for a day now on this one - I even rebuilt the whole
project from scratch to see where it breaks, but that didn't help. When
the project broke, I had just made a namespace change of the project
that contained a new interface that I wanted to inherit from. I changed
it back, but it still fails.

At any rate, I'd be happy to send source code or take any other steps
to debug. Thanks in advance...
 
Thanks... but after combing through my code once again, I found a
syntax error that wasn't getting picked up by the compiler: I was
referencing a non-existent property in an ActiveX control.

Once I renamed it, everything compiled OK.

Shouldn't the csharp compiler be able to catch this? I remember now
getting runtime errors when doing the same thiing in the past...
 
Catching that would depend on where illegal code is.

If the non-existent property of an ActiveX control is being referenced with
an already built RCW, then it is not likely to be caught until runtime, while
if you are making this access within your own code, it should be caught by
the compiler.

Brendan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top