Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
SortedDictionary : Add と foreach
// *********************************************************** // ソートされたディクショナリ // *********************************************************** using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { // インスタンス作成 SortedDictionary<string, string> openWith = new SortedDictionary<string, string>(); // ディクショナリに追加 openWith.Add("txt", "notepad.exe"); openWith.Add("bmp", "paint.exe"); openWith.Add("dib", "paint.exe"); openWith.Add("doc", "wordpad.exe"); openWith.Add("rtf", "wordpad.exe"); // 一覧表示 foreach( KeyValuePair<string, string> kvp in openWith ){ Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value); } // 削除 openWith.Remove("doc"); // 存在チェック if (!openWith.ContainsKey("doc")) { Console.WriteLine("Key \"doc\" is not found."); } } } }
run
|
edit
|
history
|
help
0
1
dsdsdsdsd
Plt-D v.0.9.4
a6
asdfrtgeryrutu
average and percentage
Fiddling around
X o X
frgthyji8u7ytgfd
RankingNumeric