Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
SortedDictionary<TKey, TValue> クラス
// *********************************************************** // ソートされたディクショナリ // *********************************************************** 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
PC/DDS Discussion
Cs
Timer1
tax cal
Math 11.0 Finished fracOp
p link gener tor
Numerical string to fancy graphical output
Fórum ➡ What values have the greatest frequency? ♦
Phone number regex validator
Test02