탑에디터

SortedDictionary 사용법

2019.10.15 22:57

toped2017 조회 수:1425

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;


public void ExistKeyWord()
{
    bool _KeyExists = false;

    SortedDictionary<string, int> _KeyWordList;
    _KeyWordList = new SortedDictionary<string, int>();

    _KeyWordList.Add("public", 0);
    _KeyWordList.Add("private", 1);
    _KeyWordList.Add("abc", 2);
    _KeyWordList.Add("abcdef", 3);

    _KeyExists = _KeyWordList.Keys.Any(k => k.StartsWith("pu"));
    Console.WriteLine(_KeyExists.ToString());

    _KeyExists = _KeyWordList.Keys.Any(k => k.StartsWith("abck"));
    Console.WriteLine(_KeyExists.ToString());

    _KeyExists = _KeyWordList.Keys.Any(k => k.StartsWith("abcdef"));
    Console.WriteLine(_KeyExists.ToString());
}
번호 제목 글쓴이 날짜 조회 수
4 StreamWriter toped2017 2020.12.29 290
» SortedDictionary 사용법 toped2017 2019.10.15 1425
2 파일삭제 toped2017 2019.09.16 551
1 파일 복사 toped2017 2019.08.21 5613