[theminds commit] r122 - trunk/Structures

0 views
Skip to first unread message

codesite...@google.com

unread,
May 12, 2007, 5:55:02 PM5/12/07
to theminds...@googlegroups.com
Author: shadytrees
Date: Sat May 12 14:54:43 2007
New Revision: 122

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); }
+ }
}
}

Reply all
Reply to author
Forward
0 new messages