473,805 Members | 2,055 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

is C++ a dot net language

Sorry for this but to settle an argument

Is C++ a dot net language, I say that it isn't and it has interoprability
with dot net through extensions and what not, plus it been around longer than
dot net, it allows multiple inheritance where as c# and vb.net don't you
inherit from one object and implement from other objects (is this right?)

Where as my boss thinks it is a dot net language because he's seen something
that says c++.net.

Please settle the argument for me and I will eat humble pie if I am wrong

cheers

Well
Oct 27 '06 #1
3 1704
C++/CLI is definitely a bona fide .NET language.
It also allows you to do unmanaged stuff, but that doesn't take away from
the fact that it's a .NET language.
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C#/VB to C++ converter
Instant Python: VB to Python converter
"steven scaife" wrote:
Sorry for this but to settle an argument

Is C++ a dot net language, I say that it isn't and it has interoprability
with dot net through extensions and what not, plus it been around longer than
dot net, it allows multiple inheritance where as c# and vb.net don't you
inherit from one object and implement from other objects (is this right?)

Where as my boss thinks it is a dot net language because he's seen something
that says c++.net.

Please settle the argument for me and I will eat humble pie if I am wrong

cheers

Well
Oct 27 '06 #2

"steven scaife" <st**********@d iscussions.micr osoft.comwrote in message
news:C1******** *************** ***********@mic rosoft.com...
Sorry for this but to settle an argument

Is C++ a dot net language, I say that it isn't and it has interoprability
with dot net through extensions and what not,
I agree. Not to mention that you can write completely unmanaged code (code
that doesn't use the .NET Framework) with C++.
plus it been around longer than dot net,
Well, that doesn't mean much. VB has been around longer than .NET, but VB
is now a .NET language.
it allows multiple inheritance where as c# and vb.net don't you
inherit from one object and implement from other objects (is this right?)
Not quite. The ability to inherit from more than one object at a time is
called "multiple" inheritance, and you're right, C# and VB .NET don't allow
for that. But, both languages do allow for inheritance of one class AND
implementation of one or more interfaces.
Where as my boss thinks it is a dot net language because he's seen
something
that says c++.net.
Microsoft is dropping the ".NET" moniker for Visual Studio in the 2005
product. Does that mean that VS 2005 isn't .NET? No, it's just the product
name.
>
Please settle the argument for me and I will eat humble pie if I am wrong

cheers

Well

Oct 27 '06 #3
"steven scaife" <st**********@d iscussions.micr osoft.comwrote in message
news:C1******** *************** ***********@mic rosoft.com...
Sorry for this but to settle an argument

Is C++ a dot net language, I say that it isn't and it has interoprability
with dot net through extensions and what not, plus it been around longer
than
dot net, it allows multiple inheritance where as c# and vb.net don't you
inherit from one object and implement from other objects (is this right?)

Where as my boss thinks it is a dot net language because he's seen
something
that says c++.net.

Please settle the argument for me and I will eat humble pie if I am wrong
The argument is as much about words as anything else.

There is an ISO standard for the C++ language but you'd be hard pressed to
find a compiler for it. Comeau is an exception here.

MS has THREE dialects (my word) of C++ none of which track the standard
exactly.

The first usually goes by the product name "Visual C++" or "VC++" and is the
one closest to the standard. It targets native Win32 platforms.

The language called "Managed Extensions for C++" aka "MC++" has support for
the .Net framework v1.1 (maybe 1.0 as well, I'm not sure). Its compiler can
generate both native and managed code and unlike all of the other .Net
languages it is capable of mixing both in the same application and even in
the same module. It excels at interop.

C++/CLI is to .Net v2.0 as MC++ was to v1.1. It has a much more elegant
syntax and has been proposed as an ECMA standard.

There is enough gray here for each of you to claim he is correct and move on
to something less contentious - like politics or religion. <BG>

Regards,
Will
Oct 27 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1605
by: Thiva Charanasri | last post by:
http://www.poweroflanguage.org Track: Computer Language 1st World Congress on the Power of Language: Theory, Practice and Performance Date: March 6 - 10, 2006 Bangkok, Thailand On this very auspicious occasion, Thai people will join hands with
22
2886
by: Michael Nahas | last post by:
Antti & all interested, The draft description of my language to replace C is available at: http://nahas.is-a-geek.com/~mike/MyC.pdf I am a long time C programmer (I read the old testament in 1987) and I've tried to keep the spirit of C and make as few changes as possible. I was mostly driven by the bloat of C++ and, now, C99. I was also
134
8053
by: evolnet.regular | last post by:
I've been utilising C for lots of small and a few medium-sized personal projects over the course of the past decade, and I've realised lately just how little progress it's made since then. I've increasingly been using scripting languages (especially Python and Bourne shell) which offer the same speed and yet are far more simple and safe to use. I can no longer understand why anyone would willingly use C to program anything but the lowest...
0
1604
by: Thiva Charanasri | last post by:
http://www.poweroflanguage.org Track: Computer Language 1st World Congress on the Power of Language: Theory, Practice and Performance Date: March 6 - 10, 2006 Bangkok, Thailand On this very auspicious occasion, Thai people will join hands with
2
1657
by: rjack | last post by:
I'm using VS 2005 Beta 2. In VS 2003, the Page directive in an aspx page has Language and CodeBehind attributes. You can have the language be different than the code behind file language. For instance, you can have Language="vb" CodeBehind="classA.cs" In VS 2005, the CodeBehind attribute seems to have been replaced with
35
2393
by: John Coleman | last post by:
Greetings, I have a rough classification of languages into 2 classes: Zen languages and tool languages. A tool language is a language that is, well, a *tool* for programming a computer. C is the prototypical tool language. Most languages in the Algol family are tool languages. Visual Basic and Java are also tool languages. On the other hand, a Zen language is a language which is purported to transform your way of thinking about...
23
3653
by: Xah Lee | last post by:
The Concepts and Confusions of Pre-fix, In-fix, Post-fix and Fully Functional Notations Xah Lee, 2006-03-15 Let me summarize: The LISP notation, is a functional notation, and is not a so-called pre-fix notation or algebraic notation. Algebraic notations have the concept of operators, meaning, symbols placed around arguments. In algebraic in-fix notation, different
669
26274
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Language”, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic paper written on this subject. On the Expressive Power of Programming Languages, by Matthias Felleisen, 1990. http://www.ccs.neu.edu/home/cobbe/pl-seminar-jr/notes/2003-sep-26/expressive-slides.pdf
10
10794
by: Immortalist | last post by:
Various aquisition devices that guide learning along particular pathways towards human biases. And as E.O. Wilson might say mental development appears to be genetically constrained. (1) Language Aquisition Device (2) Color Aqusition Device (3) Sound Aquistion Device (4) Smell Aquisition Device (5) Touch Aquisition Device (6) Art Aquisition Device
17
4733
by: CoreyWhite | last post by:
I bought this book years ago, when I was just learning C++. Since then I've gone through every math course offered at my college, taken courses on coding C & thinking in terms how how to make the smallest tightest algorithms to preform specific functions. I've also grown and matured a lot, and am wiser and older. I'm reading through the C+ + Programming Language, Third Edition now, and I can actually understand it. I can understand it...
0
9596
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10614
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10363
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10369
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7649
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5544
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4327
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3847
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.