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.
我正在开发一个自定义向导。在我的向导中,我想知道新项目的选项:添加到解决方案?新解决方案或新解决方案并创建一个新目录?有谁知道如何做到这一点。我是新手。谢谢你。
IDictionaryEnumerator de = replacementsDictionary.GetEnumerator(); while (de.MoveNext()) { if (de.Key.ToString() == "$projectname$") { projectName = de.Value.ToString(); break; } }
谢谢 Dma