[Csmail-patches] CVS: csmail/src/CSMail.Utils ChangeLog,1.7,1.8 Properties.cs,1.4,1.5
Status: Pre-Alpha
Brought to you by:
mastergaurav
From: Gaurav V. <mas...@us...> - 2002-08-30 10:32:44
|
Update of /cvsroot/csmail/csmail/src/CSMail.Utils In directory usw-pr-cvs1:/tmp/cvs-serv10765/CSMail.Utils Modified Files: ChangeLog Properties.cs Log Message: 2002-08-30 * Properties.cs : Changed value type to object. Index: ChangeLog =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 29 Aug 2002 10:13:50 -0000 1.7 +++ ChangeLog 30 Aug 2002 10:32:41 -0000 1.8 @@ -1,4 +1,8 @@ +2002-08-30 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> + + * Properties.cs : Changed value type to object. + 2002-08-29 Gaurav Vaish <mastergaurav AT users DOT sf DOT net> * StringUtils.cs : New class in lieu of Utils. Index: Properties.cs =================================================================== RCS file: /cvsroot/csmail/csmail/src/CSMail.Utils/Properties.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Properties.cs 29 Aug 2002 10:02:02 -0000 1.4 +++ Properties.cs 30 Aug 2002 10:32:41 -0000 1.5 @@ -30,11 +30,11 @@ { } - public string this[string key] + public object this[string key] { get { - return (string)base[key]; + return base[key]; } set { |