C# library

A

Andrew Ostry

Is that true C# library is same as .Net library? C# not like C++ is
exculsively using .Net library only, while C++ has it's only library
but .Net is it's extension?
 
F

Family Tree Mike

Andrew Ostry said:
Is that true C# library is same as .Net library? C# not like C++ is
exculsively using .Net library only, while C++ has it's only library
but .Net is it's extension?


C# can only create managed (.Net) code, while C++ can create managed (.Net)
and unmanged (non-.Net) code. I'm not sure if that is what you are asking.
 
J

Jeff Johnson

Is that true C# library is same as .Net library? C# not like C++ is
exculsively using .Net library only, while C++ has it's only library
but .Net is it's extension?

Basically, there is no "C# library." C# can simply tap into any managed
(i.e., CLR-based) assembly, the most common being the .NET Framework.
 

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

Top