【发布时间】:2009-12-30 22:07:55
【问题描述】:
如何将以下 C# 代码转换为 VB.NET?
转换工具做得不好。
private static readonly Dictionary<string, List<string>> ValidHtmlTags = new Dictionary<string, List<string>> {
{ "param", new List<string>() {"name","value"}},
{ "object", new List<string>() {"id","type"}},
{ "embed", new List<string>() {"src","type","wmode"}}
};
【问题讨论】:
标签: c# vb.net code-conversion