2004-05-01 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Collections / DictionaryEntry.cs
index ef3083d740744736eea0b49aad14631280859082..da4f7a0cf9dec8d86f52d2020dea622c4e44db31 100644 (file)
@@ -17,11 +17,12 @@ namespace System.Collections {
                private object key;
                private object val;
 
-               public DictionaryEntry (object k, object value) {
-                       if (k == null)
-                               throw new ArgumentNullException ("k");
+               public DictionaryEntry (object key, object value)
+               {
+                       if (key == null)
+                               throw new ArgumentNullException ("key");
                        
-                       key = k;
+                       this.key = key;
                        val = value;
                }