csharp 字典常量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 字典常量相关的知识,希望对你有一定的参考价值。

 public static class StylePropertyContainer
    {

        public static Dictionary<string, object> GetDictionary()
        {
            Dictionary<string, object> dictionary = new Dictionary<string, object>()
            {

                { "FontFamily", new  {id=1, description="font-family", defaultValue =""}},
                { "FontColor", new  {id=2, description="color", defaultValue =""}},
                { "BgColor", new  {id=3, description="background-color", defaultValue =""}}

            };

 
            return dictionary;
        }

      
    }

以上是关于csharp 字典常量的主要内容,如果未能解决你的问题,请参考以下文章

csharp 字典RemoveAll

csharp 字典Related.cs

csharp C#字典迭代器

csharp 字典扩展 - GetOrAdd,AddOrUpdate

csharp 可观察字典结构模型

在 C# 中创建常量字典