* BindingSourceTest.cs: New Filter/RemoveFilter tests.
[mono.git] / mcs / class / corlib / System.Collections.Generic / KeyValuePair.cs
index d969878b8e997321fc2c5a4fe98909b3f53410b9..11f2df7bb4a984969e72849b0227a96ccc606de1 100644 (file)
@@ -48,10 +48,10 @@ namespace System.Collections.Generic {
                        get { return value; }
                }
                
-               public KeyValuePair (TKey Key, TValue Value)
+               public KeyValuePair (TKey key, TValue value)
                {
-                       this.key = Key;
-                       this.value = Value;
+                       this.key = key;
+                       this.value = value;
                }
 
                public override string ToString()