# HG changeset patch # User IBBoard # Date 1232889923 0 # Node ID 043a1d8101f2f4e9b9d28d758c26d0f9c5dcf0a0 # Parent 25b953087465c36e1ea22e12b8ceb73f50f81566 * Rename "Convert" method to "ToArray" now that the class is more generic no-open-ticket diff -r 25b953087465 -r 043a1d8101f2 Collections/DictionaryUtils.cs --- 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 @@ /// /// An array of objects taken from the Values property of the dictionary, or NULL if the dictionary is NULL /// - public static VALUE_TYPE[] Convert(IDictionary dictionary) + public static VALUE_TYPE[] ToArray(IDictionary dictionary) { if (dictionary == null) {