Course Catalog
Curriculum Guides
  .NET
  Java/J2EE
  XML
Downloads
Buy Courseware
Customization
News
Authors
Technical Library
FAQ
About Object Innovations
Opportunities
Contact Us
Home

 

 

   
www.objectinnovations.com
info@objectinnovations.com
877-558-7246 (toll free)  
781-466-8012  


Details about misspelled filename on Page 56 of
.NET Architecture and Programming Using Visual C++



The mscorlib.dll file name is spelled incorrectly on page 56.

On page 56, the code example contains the following erroneous code:

//Unmanaged.cpp
# using <mscorllib.dll>
...


When compiled, an error occurs stating that mscorllib.dll cannot be found:

   fatal error C1107: could not find assembly 'mscorllib.dll'

The error is due to the fact that mscorlib should have one 'l', not two. Also, the space following the # symbol is not necessary. Therefore, the correct code is:

//Unmanaged.cpp
#using <mscorlib.dll>
...