Modified:
trunk/Structures/TwoWayDictionary.cs
Log:
* Lists Values, Keys are new properties
Modified: trunk/Structures/TwoWayDictionary.cs
==============================================================================
--- trunk/Structures/TwoWayDictionary.cs (original)
+++ trunk/Structures/TwoWayDictionary.cs Sat May 12 14:54:43 2007
@@ -62,5 +62,13 @@
MeToYou.Remove(id);
return true;
}
+
+ public List<You> Values{
+ get { return new List<You>(YouToMe.Keys); }
+ }
+
+ public List<Me> Keys {
+ get { return new List<Me>(MeToYou.Keys); }
+ }
}
}