Mercurial > repos > IBBoard
changeset 15:043a1d8101f2
* Rename "Convert" method to "ToArray" now that the class is more generic
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 25 Jan 2009 13:25:23 +0000 |
parents | 25b953087465 |
children | 0352fa33ee8f |
files | Collections/DictionaryUtils.cs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Collections/DictionaryUtils.cs Sun Jan 25 11:03:38 2009 +0000 +++ b/Collections/DictionaryUtils.cs Sun Jan 25 13:25:23 2009 +0000 @@ -32,7 +32,7 @@ /// <returns> /// An array of <see cref="VALUE_TYPE"/> objects taken from the Values property of the dictionary, or NULL if the dictionary is NULL /// </returns> - public static VALUE_TYPE[] Convert<KEY_TYPE, VALUE_TYPE>(IDictionary<KEY_TYPE, VALUE_TYPE> dictionary) + public static VALUE_TYPE[] ToArray<KEY_TYPE, VALUE_TYPE>(IDictionary<KEY_TYPE, VALUE_TYPE> dictionary) { if (dictionary == null) {