S
Steve Behman
Where can I find a discussion of the operator (or is it a keyword?) "^"?
Doesn't have any relationship to the "&" in C++?
Doesn't have any relationship to the "&" in C++?
Where can I find a discussion of the operator (or is it a keyword?)
"^"?
Doesn't have any relationship to the "&" in C++?
My immersion into Visual C++ has been very much like going into a far
too hot sauna . I feel that I've been burnt at every turn. The
learning curve is very much steeper than any of the 50 odd other
languages I have used.
I have searched MSDN at great length and came up empty-handed. Would
you please give me the URL for this discussion?
Steve said:Hello again Sven,
Thank you very much.
My immersion into Visual C++ has been very much like going into a far too
hot sauna . I feel that I've been burnt at every turn. The learning curve
is very much steeper than any of the 50 odd other languages I have used.
I have searched MSDN at great length and came up empty-handed. Would you
please give me the URL for this discussion?
If you go that way, there are many more things you cannot do with C# thatDavid said:And there are things you can do with C# that you cannot do with C++/CLI,
because Microsoft has abandoned the attempt make C++/CLI a first class
.NET language.
David said:Hi Steve:
If you want to learn C++/CLI (or any language really) you need a
book. An introductory book that covers both C++/CLI (using WinForms)
and standard C++ (using MFC) is Ivor Horton's Beginning Visual C++
2008.
But, as I believe I have mentioned to you before, you should consider
very carefully if you really want to get into C++/CLI. If you want to
write WinForms applications, the effort required to do it using C# is
much less than with C++/CLI (even if you are familiar with standard
C++). And there are things you can do with C# that you cannot do with
C++/CLI, because Microsoft has abandoned the attempt make C++/CLI a
first class .NET language.
Ben said:I think we've discussed this at length before on thise newsgroup. C++/CLI
isn't a first class citizen of *Visual Studio* in that most of the .NET
wizards can't deal with it. The debugger slows down. But the language and
compiler itself is very well supported -- if you're willing to write code,
you can do anything with C++/CLI that is possible with C#.
David said:Ben::
LINQ? Doesn't LINQ require partial classes?
C#/VB.NET have recently diverged some more. Even though new features were
added, I've heard VB pundits complain that VB isn't being treated as first
class either, because of C# feature X or Y that they're missing.
However, it seems to me that there is a perception that C# is the "real"
.NET language. For example, lots of books about .NET topics (including
excellent WPF book by Adam Nathan) use C# as their .NET language to show
concepts and code.