newbie question

  • Thread starter Thread starter ShipHead
  • Start date Start date
S

ShipHead

#using <mscorlib.dll>

What is this actually doing in my code?
Is this like including mscorlib.h and linking with mscorlib.lib?
 
ShipHead said:
#using <mscorlib.dll>

What is this actually doing in my code?
Is this like including mscorlib.h and linking with mscorlib.lib?

Pretty much, yes - except this is how you bring .NET assemblies in, which
don't have corresponding header and lib files.

-cd
 
Back
Top