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.
我需要帮助将此 c# razor 代码转换为 VB.NET razor 代码。
PageData["Colors"] = new[]{"LightCyan", "Gainsboro","Chocolate"};
试试这样:
PageData("Colors") = { "LightCyan", "Gainsboro", "Chocolate" }