zoukankan      html  css  js  c++  java
  • C# 集合类(五):SortedList

    SortedList类:表示键/值对的集合,与哈希表类似,区别在于SortedList中的Key数组排好序的。

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Collections;
    namespace ConsoleApplication1
    {
        
    class Program
        
    {
            
    public static void Main()
            
    {
                SortedList sl 
    = new SortedList();
                sl[
    "c"= 41;
                sl[
    "a"= 42;
                sl[
    "d"= 11;
                sl[
    "b"= 13;

                
    foreach (DictionaryEntry element in sl)
                
    {
                    
    string s = (string)element.Key;
                    
    int i = (int)element.Value;
                    Console.WriteLine(
    "{0},{1}", s, i);
                }

            }

        }

    }


  • 相关阅读:
    UIView与CALayer的区别,很详细
    IOS图标尺寸一览
    iOS开发之WebView
    iOS开发之版本控制(SVN)
    IOS 多个ImageView图片层叠透明区域点击事件穿透
    UIButton
    UISwitch
    cocoapods_第二篇
    UIView
    IOS开发中 RunLoop,RunTime
  • 原文地址:https://www.cnblogs.com/wf225/p/1038091.html
Copyright © 2011-2022 走看看