本文介绍了如何排序NameValueCollection使用C#中的键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我写了以下代码,它也工作了 - 但我想知道他们是否比这更好的方法:

I've written following code and it works too - but I wanted to know whether their is better way than this :

 NameValueCollection optionInfoList = ..... ;
 if (aSorting)
            {
                optionInfoListSorted = new nameValueCollection();        
                String[] sortedKeys = optionInfoList.AllKeys; 
                Array.Sort(sortedKeys);
                foreach (String key in sortedKeys)
                    optionInfoListSorted.Add(key, optionInfoList[key]);

                return optionInfoListSorted;
            }


推荐答案

http://msdn.microsoft.com/en-us/library/f7fta44c.aspx =nofollow noreferrer> SortedDictionary 。

Use a SortedDictionary instead.

这篇关于如何排序NameValueCollection使用C#中的键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 04:54