代码之家  ›  专栏  ›  技术社区  ›  Greg

C:为什么设置属性值有0项?

  •  2
  • Greg  · 技术社区  · 16 年前

    假设设置文件中有5个项目( MySetting1 MySetting5 为什么? PropertyValues 属性具有正确数字时有0个项目?

    Console.WriteLine( Properties.Settings.Default.PropertyValues.Count); // Displays 0
    Console.WriteLine( Properties.Settings.Default.Properties.Count);     // Displays 5
    
    1 回复  |  直到 16 年前
        1
  •  5
  •   James    16 年前

    Console.WriteLine(Settings.Default.PropertyValues.Count.ToString());
    Console.ReadLine();
    Settings.Default.Setting = "abc";
    Console.WriteLine(Settings.Default.PropertyValues.Count.ToString());
    Console.ReadLine();