[Msnphelper-cvs-commit] CVS: msnphelper/src Contact.cs,1.2,1.3
Status: Alpha
Brought to you by:
cmyers
|
From: Chad M. <cm...@us...> - 2002-03-18 04:12:54
|
Update of /cvsroot/msnphelper/msnphelper/src
In directory usw-pr-cvs1:/tmp/cvs-serv8997/src
Modified Files:
Contact.cs
Log Message:
Added some commenting
Index: Contact.cs
===================================================================
RCS file: /cvsroot/msnphelper/msnphelper/src/Contact.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Contact.cs 18 Mar 2002 03:50:45 -0000 1.2
--- Contact.cs 18 Mar 2002 04:12:51 -0000 1.3
***************
*** 51,54 ****
--- 51,58 ----
* Constructors
***************************************************************/
+ /// <summary>
+ /// Main constructor
+ /// </summary>
+ /// <param name="userName">The user handle (email address) for this user</param>
internal Contact(String userName)
{
***************
*** 58,61 ****
--- 62,70 ----
}
+ /// <summary>
+ /// Constructs a contact with a user handle and friendly name
+ /// </summary>
+ /// <param name="userName">The user handle (email address) for this user</param>
+ /// <param name="friendlyName">The friendly name of the user</param>
internal Contact(String userName, String friendlyName) :
this(userName)
|