dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Collections Dictionary


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Collections DictionaryEntry.cs,1.2,1.3
Date: Mon, 25 Nov 2002 23:00:38 -0500

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Collections
In directory subversions:/tmp/cvs-serv412/runtime/System/Collections

Modified Files:
        DictionaryEntry.cs 
Log Message:


Rename "value__" to "value_" so that MS'es "peverify" doesn't get confused.


Index: DictionaryEntry.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Collections/DictionaryEntry.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** DictionaryEntry.cs  12 Oct 2001 05:39:56 -0000      1.2
--- DictionaryEntry.cs  26 Nov 2002 04:00:36 -0000      1.3
***************
*** 28,33 ****
  {
        // Instance fields.
!       private Object key__;
!       private Object value__;
  
        // Construct a dictionary entry.
--- 28,33 ----
  {
        // Instance fields.
!       private Object key_;
!       private Object value_;
  
        // Construct a dictionary entry.
***************
*** 38,43 ****
                        throw new ArgumentNullException("key");
                }
!               key__ = key;
!               value__ = value;
        }
  
--- 38,43 ----
                        throw new ArgumentNullException("key");
                }
!               key_ = key;
!               value_ = value;
        }
  
***************
*** 47,55 ****
                get
                {
!                       return key__;
                }
                set
                {
!                       key__ = value;
                }
        }
--- 47,55 ----
                get
                {
!                       return key_;
                }
                set
                {
!                       key_ = value;
                }
        }
***************
*** 58,66 ****
                get
                {
!                       return value__;
                }
                set
                {
!                       value__ = value;
                }
        }
--- 58,66 ----
                get
                {
!                       return value_;
                }
                set
                {
!                       value_ = value;
                }
        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]