Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想存储标签列表,以便以后可以在标签云中使用它。
该列表可以是硬编码的,并且不需要在应用程序运行时填充,当我想添加更多标签时,可以编辑该列表。
标签是链接正确的吗?我如何将链接保存为单词?
有人可以告诉我如何做到这一点。
提前致谢
你可以使用字典。
Dictionary<string, string> a = new Dictionary<string, string>(); a.Add("tag", "url");
这不是你想要的吗?