这个 C#/WPF 代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace TestDict28342343
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
Dictionary<string, string> variableNamesAndValues =
new Dictionary<string, string>(StringComparison.InvariantCultureIgnoreCase);
}
}
}
给我错误:
'System.Collections.Generic.Dictionary.Dictionary(System.Collections.Generic.IDictionary)' 的最佳重载方法匹配有一些无效参数
然而,我在任何地方都可以找到这个代码示例,例如here和here。
如何定义其键不区分大小写的字典?