辞書に問題があります。私はこのコードを使用しています:
Dictionary<string, string> testDictionary = new Dictionary<string, string>();
testDictionary.Add("1", "1");
testDictionary.Add("2", "2");
testDictionary.Add("3", "3");
testDictionary.Remove("2");
testDictionary.Add("4", "4");
この後の辞書(キーと値)を[1,3,4]にしたいのですが、[1,4,3]です。これどうやってするの?