Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-03-15 19:21:03 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-03-16 15:02:09 +0300
commit7ad842c95ccb59a1406b21f649b80430c0d83a42 (patch)
tree1800437d39722f55b0b5c22819d092570a67370f /mcs/class/System.DirectoryServices
parent4a1c47f4bd5fb8859cac344def813f9aa64f0724 (diff)
[bcl] Rename variables to avoid conflict with later renames
Diffstat (limited to 'mcs/class/System.DirectoryServices')
-rw-r--r--mcs/class/System.DirectoryServices/System.DirectoryServices/PropertyValueCollection.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices/PropertyValueCollection.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices/PropertyValueCollection.cs
index 15089be8d54..b43bd209896 100644
--- a/mcs/class/System.DirectoryServices/System.DirectoryServices/PropertyValueCollection.cs
+++ b/mcs/class/System.DirectoryServices/System.DirectoryServices/PropertyValueCollection.cs
@@ -87,14 +87,14 @@ namespace System.DirectoryServices
public void AddRange(object[] values)
{
- foreach (object value in values)
- Add (value);
+ foreach (object val in values)
+ Add (val);
}
public void AddRange (PropertyValueCollection coll)
{
- foreach (object value in coll)
- Add (value);
+ foreach (object val in coll)
+ Add (val);
}
public int IndexOf( object value )