| |
|
|
|
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>
...
|
|
Copyright © 2004 • Object Innovations, Inc.
|
|