Does the FCL replace the C++ standard library?

G

Gaz

I'm trying to teach myself this .NET business and I can't see any mention of
commands like cout, cin or the use of vectors, strings and lists and
suchlike from the std namespace. Do I just forget everything I've learned
about the STL and the standard C++ library and start over with
Console::Write, managed arrays and String etc.?

Gaz
 
D

Dino Chiesa [Microsoft]

No,
if you are a C++ developer, you can use both, or either.
It is packaged as "managed extensions" to C++.
So you continue to use C++, but can also take advantage of the extensions.

Now if you are developing in C#, then yes, you use the FCL.
 

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