<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ??? in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343913#M84783</link>
    <description>My understanding is that VS2002 or 2003 is ok for&lt;BR /&gt;
managed apps.  &lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message news:4864226@discussion.autodesk.com...&lt;BR /&gt;
This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;&lt;/JRIZZO&gt;</description>
    <pubDate>Fri, 03 Jun 2005 01:44:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2005-06-03T01:44:48Z</dc:date>
    <item>
      <title>VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343909#M84779</link>
      <description>I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
-------------------------------------------------------------------------------------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7): likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem, try simplifying or changing the program &lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer to the point at which the internal error &lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler Error: stage 'BIND' symbol &lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'BIND' symbol &lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol &lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol &lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol &lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol &lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error: stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com</description>
      <pubDate>Thu, 02 Jun 2005 22:49:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343909#M84779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-02T22:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343910#M84780</link>
      <description>Yeah, VS2002 has its problems. I ran into this and others so usually use new &lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it &lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
-------------------------------------------------------------------------------------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7): &lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem, &lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer &lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error: &lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error: &lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Thu, 02 Jun 2005 23:29:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343910#M84780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-02T23:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343911#M84781</link>
      <description>Albert - Thanks, I'll try that.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new &lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it &lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
-------------------------------------------------------------------------------------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7): &lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem, &lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer &lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[], &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler &lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error: &lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error: &lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;</description>
      <pubDate>Thu, 02 Jun 2005 23:49:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343911#M84781</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-02T23:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343912#M84782</link>
      <description>This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;</description>
      <pubDate>Thu, 02 Jun 2005 23:50:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343912#M84782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-02T23:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343913#M84783</link>
      <description>My understanding is that VS2002 or 2003 is ok for&lt;BR /&gt;
managed apps.  &lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message news:4864226@discussion.autodesk.com...&lt;BR /&gt;
This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;&lt;/JRIZZO&gt;</description>
      <pubDate>Fri, 03 Jun 2005 01:44:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343913#M84783</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-03T01:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343914#M84784</link>
      <description>Even for managed ObjectARX??&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864253@discussion.autodesk.com...&lt;BR /&gt;
My understanding is that VS2002 or 2003 is ok for&lt;BR /&gt;
managed apps.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message&lt;BR /&gt;
news:4864226@discussion.autodesk.com...&lt;BR /&gt;
This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;&lt;/JRIZZO&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Fri, 03 Jun 2005 11:34:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343914#M84784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-03T11:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343915#M84785</link>
      <description>The requirement that you must use VS2002 when you use ObjectARX comes from 2 &lt;BR /&gt;
facts:&lt;BR /&gt;
1. C++ name mangling rules are not standarized and they can change (in fact &lt;BR /&gt;
they did change between VS2002 and VS2003)&lt;BR /&gt;
2. The memory management contract in some ObjectARX API relies the caller &lt;BR /&gt;
(you code) and the callee (AutoCAD) to share the same C/C++ runtime &lt;BR /&gt;
(msvcr70.dll)&lt;BR /&gt;
&lt;BR /&gt;
When you use the .NET API neither #1 nor #2 applies. If you build ObjectARX &lt;BR /&gt;
applications with the /CLR C++ compiler flag then both #1 and #2 applies. &lt;BR /&gt;
I'm not sure what you mean by managed ObjectARX. Can you clarify? (I know I &lt;BR /&gt;
should be more familiar with our own marketing terms.)&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message &lt;BR /&gt;
news:4864438@discussion.autodesk.com...&lt;BR /&gt;
Even for managed ObjectARX??&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864253@discussion.autodesk.com...&lt;BR /&gt;
My understanding is that VS2002 or 2003 is ok for&lt;BR /&gt;
managed apps.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message&lt;BR /&gt;
news:4864226@discussion.autodesk.com...&lt;BR /&gt;
This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;&lt;/JRIZZO&gt;&lt;/TONY.TANZILLO&gt;&lt;/JRIZZO&gt;</description>
      <pubDate>Fri, 03 Jun 2005 15:27:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343915#M84785</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-03T15:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343916#M84786</link>
      <description>What is 'managed ObjectARX' ?&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message news:4864438@discussion.autodesk.com...&lt;BR /&gt;
Even for managed ObjectARX??&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864253@discussion.autodesk.com...&lt;BR /&gt;
My understanding is that VS2002 or 2003 is ok for&lt;BR /&gt;
managed apps.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message&lt;BR /&gt;
news:4864226@discussion.autodesk.com...&lt;BR /&gt;
This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;&lt;/JRIZZO&gt;&lt;/TONY.TANZILLO&gt;&lt;/JRIZZO&gt;</description>
      <pubDate>Fri, 03 Jun 2005 16:39:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343916#M84786</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-03T16:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: VS2002 Internal Compiler Error with ResultBufferEnumerator ???</title>
      <link>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343917#M84787</link>
      <description>I just meant calling managed C++ from an ObjectARX module...you answered my&lt;BR /&gt;
question, thanks....&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864823@discussion.autodesk.com...&lt;BR /&gt;
The requirement that you must use VS2002 when you use ObjectARX comes from 2&lt;BR /&gt;
facts:&lt;BR /&gt;
1. C++ name mangling rules are not standarized and they can change (in fact&lt;BR /&gt;
they did change between VS2002 and VS2003)&lt;BR /&gt;
2. The memory management contract in some ObjectARX API relies the caller&lt;BR /&gt;
(you code) and the callee (AutoCAD) to share the same C/C++ runtime&lt;BR /&gt;
(msvcr70.dll)&lt;BR /&gt;
&lt;BR /&gt;
When you use the .NET API neither #1 nor #2 applies. If you build ObjectARX&lt;BR /&gt;
applications with the /CLR C++ compiler flag then both #1 and #2 applies.&lt;BR /&gt;
I'm not sure what you mean by managed ObjectARX. Can you clarify? (I know I&lt;BR /&gt;
should be more familiar with our own marketing terms.)&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message&lt;BR /&gt;
news:4864438@discussion.autodesk.com...&lt;BR /&gt;
Even for managed ObjectARX??&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864253@discussion.autodesk.com...&lt;BR /&gt;
My understanding is that VS2002 or 2003 is ok for&lt;BR /&gt;
managed apps.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
"Jon Rizzo" &lt;JRIZZO&gt; wrote in message&lt;BR /&gt;
news:4864226@discussion.autodesk.com...&lt;BR /&gt;
This wouldn't be such a pain if ObjectARX didn't require 2002...without the&lt;BR /&gt;
service pack no less...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Albert Szilvasy" &lt;NOT_PROVIDED&gt; wrote in message&lt;BR /&gt;
news:4864160@discussion.autodesk.com...&lt;BR /&gt;
Yeah, VS2002 has its problems. I ran into this and others so usually use new&lt;BR /&gt;
C# compilers.&lt;BR /&gt;
Try casting buf to IEnumerable explicitly. It will be slightly slower but it&lt;BR /&gt;
will compile at least.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:4864174@discussion.autodesk.com...&lt;BR /&gt;
I'm getting the output shown below, which appears to be&lt;BR /&gt;
caused by this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
 Object o = //&lt;BR /&gt;
&lt;BR /&gt;
 if( o is ResultBuffer )&lt;BR /&gt;
 {&lt;BR /&gt;
     ResultBuffer buf = (ResultBuffer) o;&lt;BR /&gt;
&lt;BR /&gt;
     /// iterating the ResultBuffer contents is&lt;BR /&gt;
     /// causing the error. commenting out this&lt;BR /&gt;
     /// foreach construct makes it go away:&lt;BR /&gt;
&lt;BR /&gt;
     foreach( TypedValue val in buf )&lt;BR /&gt;
     {&lt;BR /&gt;
          // Do something with val&lt;BR /&gt;
     }&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
Here is the compiler output copied from the output window:&lt;BR /&gt;
&lt;BR /&gt;
----------------------------------------------------------------------------&lt;BR /&gt;
---------------------------&lt;BR /&gt;
error CS0583: Internal Compiler Error (0xc0000005 at address 531A15B7):&lt;BR /&gt;
likely culprit is 'BIND'.&lt;BR /&gt;
&lt;BR /&gt;
An internal error has occurred in the compiler. To work around this problem,&lt;BR /&gt;
try simplifying or changing the program&lt;BR /&gt;
near the locations listed below. Locations at the top of the list are closer&lt;BR /&gt;
to the point at which the internal error&lt;BR /&gt;
occurred.&lt;BR /&gt;
&lt;BR /&gt;
C:\Projects\test\bin\Debug\acdbmgd.dll: error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'Autodesk.AutoCAD.DatabaseServices.ResultBufferEnumerator.Current'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(601,19): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(597,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(596,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(590,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(576,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(570,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(561,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(546,21): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(540,16): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(539,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(538,13): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(536,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(535,10): error CS0585: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'BIND' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(532,27): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface.BuildCommandList(object[],&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.ResultBuffer)'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(353,17): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol&lt;BR /&gt;
'RxAds.CommandLineInterface'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(46,11): error CS0584: Internal Compiler&lt;BR /&gt;
Error: stage 'COMPILE' symbol 'RxAds'&lt;BR /&gt;
c:\Projects\test\rxadsdotnet.cs(1,1): error CS0584: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE' symbol ''&lt;BR /&gt;
C:\Projects\test\RxAdsDotNet.cs: error CS0586: Internal Compiler Error:&lt;BR /&gt;
stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'COMPILE'&lt;BR /&gt;
error CS0587: Internal Compiler Error: stage 'BEGIN'&lt;BR /&gt;
&lt;BR /&gt;
Build complete -- 25 errors, 0 warnings&lt;BR /&gt;
Building satellite assemblies...&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------------------- Done ----------------------&lt;BR /&gt;
&lt;BR /&gt;
    Build: 0 succeeded, 1 failed, 0 skipped&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOT_PROVIDED&gt;&lt;/JRIZZO&gt;&lt;/TONY.TANZILLO&gt;&lt;/JRIZZO&gt;&lt;/NOT_PROVIDED&gt;</description>
      <pubDate>Fri, 03 Jun 2005 18:08:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vs2002-internal-compiler-error-with-resultbufferenumerator/m-p/1343917#M84787</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-06-03T18:08:09Z</dc:date>
    </item>
  </channel>
</rss>

