Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Function comment


Message #1 by "Betti Alessandro" <betti@g...> on Tue, 4 Jun 2002 12:43:39 +0200
This is a multi-part message in MIME format.

------=_NextPart_000_0109_01C20BC5.73962DC0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Some one know the equivalent command to add comment to a function/Sub ?

in C# is

//<summary>

//</summary>

in VB ?

Thanks
Betti Alessandro


Message #2 by Terrence Joubert <Terrence@v...> on Tue, 4 Jun 2002 14:34:52 +0400
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

------_=_NextPart_001_01C20BB3.75ED9B70
Content-Type: text/plain

Betti,
You can use either ' or the keyword REM before writing your comment.
Terrence
 
-----Original Message-----
From: Betti Alessandro [mailto:betti@g...] 
Sent: Tuesday, June 04, 2002 2:44 PM
To: ASP+
Subject: [aspx] Function comment
 
Some one know the equivalent command to add comment to a function/Sub ?
 
in C# is 
 
//<summary>
 
//</summary> 
 
in VB ?
 
Thanks
Betti Alessandro
--- Change your mail options at http://p2p.wrox.com/manager.asp or to
unsubscribe send a blank email to  

Message #3 by "Betti Alessandro" <betti@g...> on Tue, 4 Jun 2002 13:09:48 +0200
This is a multi-part message in MIME format.

------=_NextPart_000_0115_01C20BC9.1AFA79B0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Yes i know that ...
But in C# when i use <summary> bla bla bla </summary> the tool tip of 
function became "bla bla bla" .

Ale

  ----- Original Message -----
  From: Terrence Joubert
  To: ASP+
  Sent: Tuesday, June 04, 2002 12:34 PM
  Subject: [aspx] RE: Function comment


  Betti,

  You can use either ' or the keyword REM before writing your comment.

  Terrence

  

  -----Original Message-----
  From: Betti Alessandro [mailto:betti@g...]
  Sent: Tuesday, June 04, 2002 2:44 PM
  To: ASP+
  Subject: [aspx] Function comment

  

  Some one know the equivalent command to add comment to a function/Sub 
?

  

  in C# is

  

  //<summary>

  

  //</summary>

  

  in VB ?

  

  Thanks

  Betti Alessandro

  --- Change your mail options at http://p2p.wrox.com/manager.asp or to 
unsubscribe send a blank email to 

  --- Change your mail options at http://p2p.wrox.com/manager.asp or to 
unsubscribe send a blank email to 


Message #4 by Feduke Cntr Charles R <FedukeCR@m...> on Tue, 4 Jun 2002 08:52:09 -0400
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

------_=_NextPart_001_01C20BC6.A3710B40
Content-Type: text/plain;
	charset="iso-8859-1"

    That's a language feature of C# (trying to be all JavaDoc and such).
You're only choice is to use attributes and compile; i.e.
 
[Default("0"),
    Description("Returns the age of the person.")]
Public Function Age As Integer
    Return Int32.Parse(dt["age"].ToString());
End Function
 
- Chuck
-----Original Message-----
From: Betti Alessandro [mailto:betti@g...]
Sent: Tuesday, June 04, 2002 7:10 AM
To: ASP+
Subject: [aspx] RE: Function comment


Yes i know that ...
But in C# when i use <summary> bla bla bla </summary> the tool tip of
function became "bla bla bla" .
 
Ale
 
----- Original Message ----- 
From: Terrence  <mailto:Terrence@v...> Joubert 
To: ASP+ <mailto:aspx@p...>  
Sent: Tuesday, June 04, 2002 12:34 PM
Subject: [aspx] RE: Function comment

Betti,
You can use either ' or the keyword REM before writing your comment.
Terrence
 
-----Original Message-----
From: Betti Alessandro [mailto:betti@g...] 
Sent: Tuesday, June 04, 2002 2:44 PM
To: ASP+
Subject: [aspx] Function comment
 
Some one know the equivalent command to add comment to a function/Sub ?
 
in C# is 
 
//<summary>
 
//</summary> 
 
in VB ?
 
Thanks
Betti Alessandro
--- Change your mail options at http://p2p.wrox.com/manager.asp or to
unsubscribe send a blank email to  
--- Change your mail options at http://p2p.wrox.com/manager.asp or to
unsubscribe send a blank email to  
--- Change your mail options at http://p2p.wrox.com/manager.asp or to
unsubscribe send a blank email to  


  Return to Index