0
can anyone tell me the difference between C++ and C#
3 Answers
+ 2
In c++ everyrhing is past by value (except if you change it explicitly) and you can change the behavior by defining = operator and many other things are more customizablz in c++ but in c# only struct andd simple variables (int,, float,...) are past by value. in c++ you have do delete dynamically created objects while in c# there is a gabrage collecttor... because c# is a modern language and not c++.
+ 1
C# is Microsoft's language and is good to write an app on Windows platform. it's also 100% object oriented
0
c# is a programming language based on c++.It is easier but slower than c++.