473,767 Members | 2,152 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XML Commenting

Does C++/CLI have XML style commenting like C#??

If i do /// I dont get the completion like C#

Nov 17 '05 #1
9 1876
> From: <.>

Does C++/CLI have XML style commenting like C#??

If i do /// I dont get the completion like C#


Our next release (currently in Alpha) will have support for XML comments.

Thanks,
--
Tarek Madkour, Visual C++ Team
This posting is provided AS IS with no warranties, and confers no rights.

Nov 17 '05 #2
Great.

What about namespace ONE::TWO::THREE instead of having to nest them? Being
able to specify namespaces like C# on one line would make refactoring them
easier and also code more readable.

I read somewhere that the __gc, __property extension keywords are being
replaced to make them cleaner, is this true and if so where can I get the
docs on this. When will these be submitted to the ECMA?

""Tarek Madkour [MSFT]"" <ta****@online. microsoft.com> wrote in message
news:GO******** ******@cpmsftng xa07.phx.gbl...
From: <.>

Does C++/CLI have XML style commenting like C#??

If i do /// I dont get the completion like C#


Our next release (currently in Alpha) will have support for XML comments.

Thanks,
--
Tarek Madkour, Visual C++ Team
This posting is provided AS IS with no warranties, and confers no rights.

Nov 17 '05 #3
.. wrote:
What about namespace ONE::TWO::THREE instead of having to nest them? Being
able to specify namespaces like C# on one line would make refactoring
them easier and also code more readable.
Hello dot,
Opening and creating a nested namespace in one statement is not something
we're going to do in Whidbey. We and the ECMA committee have discussed it,
and as with a few things we're passing the issue to the ISO standards
committee. Hopefully, they'll feel compelled to fix it (we're involved, so
we'll try to compell them). It may be a while, as the ISO standards
committee is still in the early stages of creating a new version.
I read somewhere that the __gc, __property extension keywords are being
replaced to make them cleaner, is this true and if so where can I get the
docs on this. When will these be submitted to the ECMA?


This work has already been submitted to ECMA. In fact, we've already had two
standards committee meetings to work on it. Here's a link to a link to the
base candidate draft discussing what is happening with the new syntax.

http://blogs.msdn.com/branbray/archi.../21/51029.aspx

--
Brandon Bray, Visual C++ Compiler http://blogs.msdn.com/branbray/
This posting is provided AS IS with no warranties, and confers no rights.
Nov 17 '05 #4
"(we're involved, so
we'll try to compell them)."

Beat them into submission with a baseball bat . works wonders.
"Brandon Bray [MSFT]" <br******@onlin e.microsoft.com > wrote in message
news:#O******** ******@TK2MSFTN GP12.phx.gbl...
. wrote:
What about namespace ONE::TWO::THREE instead of having to nest them? Being able to specify namespaces like C# on one line would make refactoring
them easier and also code more readable.
Hello dot,
Opening and creating a nested namespace in one statement is not

something we're going to do in Whidbey. We and the ECMA committee have discussed it,
and as with a few things we're passing the issue to the ISO standards
committee. Hopefully, they'll feel compelled to fix it (we're involved, so
we'll try to compell them). It may be a while, as the ISO standards
committee is still in the early stages of creating a new version.
I read somewhere that the __gc, __property extension keywords are being
replaced to make them cleaner, is this true and if so where can I get the docs on this. When will these be submitted to the ECMA?
This work has already been submitted to ECMA. In fact, we've already had

two standards committee meetings to work on it. Here's a link to a link to the
base candidate draft discussing what is happening with the new syntax.

http://blogs.msdn.com/branbray/archi.../21/51029.aspx

--
Brandon Bray, Visual C++ Compiler http://blogs.msdn.com/branbray/
This posting is provided AS IS with no warranties, and confers no rights.

Nov 17 '05 #5
> > Does C++/CLI have XML style commenting like C#??

If i do /// I dont get the completion like C#


Our next release (currently in Alpha) will have support for XML comments.


Something for the wishlist is: The graphical representation like Doxygen
uses.
Nov 17 '05 #6
Hi Olaf,
Does C++/CLI have XML style commenting like C#??

If i do /// I dont get the completion like C#


Our next release (currently in Alpha) will have support for XML comments.


Something for the wishlist is: The graphical representation like Doxygen
uses.


I imagine that once you have XML comments, you should be able to use
something like NDoc [1] to generate actual documentation files :)

[1] http://ndoc.sourceforge.net/wiki

--
Tomas Restrepo
to****@mvps.org
Nov 17 '05 #7

<.> wrote in message news:u$******** ******@TK2MSFTN GP12.phx.gbl...
"(we're involved, so
we'll try to compell them)."

Beat them into submission with a baseball bat . works wonders.


I take it you don't read the language standardisation newsgroups...

Will

Nov 17 '05 #8
I take it that joke was way over your head.
"Will Dean" <wi**@nospam.de mon.co.uk> wrote in message
news:er******** ******@TK2MSFTN GP12.phx.gbl...

<.> wrote in message news:u$******** ******@TK2MSFTN GP12.phx.gbl...
"(we're involved, so
we'll try to compell them)."

Beat them into submission with a baseball bat . works wonders.


I take it you don't read the language standardisation newsgroups...

Will

Nov 17 '05 #9
<.> wrote in message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I take it that joke was way over your head.


Err, no.

Will
Nov 17 '05 #10

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

Similar topics

1
1669
by: LRW | last post by:
OK, this is probably an odd, but esy question. =) I taught myself PHP from a Julie Meloni book and newsgroup questions. So, I don't think I've really learned the proper way of organizing and formatting and commenting PHP scripts. I had an opportunity to work with someone using ASP.Net, and MAN was the formatting strict and clear and precise and complete! So, I've tried to do something similar with my PHP: Putting all functions...
19
1501
by: qazmlp | last post by:
I hope comp.lang.c will not find the following question as a complete off-topic. I would like to remove ie.comment out the 'cout' statements during compilation(actually preprocessing) time. The statements like this: cout<<"something\n" ; should be made as
46
2493
by: Profetas | last post by:
Hi, I know that this is off topic. but I didn't know where to post. Do you comment your source code while coding or after coding. for example: you write a procedure and after it is working, you'll comment it.
4
7744
by: Ron McNulty | last post by:
Often when testing an app, I want to temporarily comment out sections of the App.config file. Is there any way to do this? Regards Ron
3
1342
by: Naveen Mukkelli | last post by:
Hi All, I'm trying to create XML commenting for my code using XML commenting feature for the first time. I'm using VS.NET 2003 and C#. I'v tried the following way. Step 1: set the file name for xml file in "Project Properties | Configuration Properties | Build | XML Documentation File"
18
1308
by: Marian F. | last post by:
The 12 years old genius function to count english words in a sentence: ' This is my function to count english words in your string ' s is the string with your words to be counted ' Returns an integer as the number of words found Public Function iCW(ByVal s As String) As Integer ' We start declaring the variable to count words Dim c As Integer ' This is the variable used in the for next loop ' to check every char in your string s
8
1864
by: lallous | last post by:
Hello I've been programming for a number of years, however my commenting style is always different. Sometimes I use something like: /************************ * method .... * comments... *************************/
2
1085
by: RYoung | last post by:
Can someone point me to a reference concerning source code commenting with VB 2005, ala C# commenting? I googled and found alot of links to add-ins and commercial products, but I can't find any info on whether documentation generation is supported with VB 2005 using xml comments. Thanks, Ron
1
1249
by: Wijaya Edward | last post by:
Hi all, I have the following code: import sys import re ham_count = 0 spam_count = 0
100
4745
by: Angel Tsankov | last post by:
Can someone recommend a good source of C/C++ coding style. Specifically, I am interested in commenting style and in particular how to indent comments and the commented code, rather than when to use comments. Thanks in advance! -- http://www.gotw.ca/resources/clcm.htm for info about ]
0
10013
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...
0
9841
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8838
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7383
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
6655
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5424
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3930
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
3533
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2807
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.