这是我不知道正确的 Xml 语法的一个简单问题。在温莎城堡中,我可以复制这行代码:
IoC.Container.AddComponent<IInputRequestedDialog<string>, SealsInputDialog>("seals");
使用此 XML:
<component id="seals"
service="MyApp.InputRequestedDialog`1[[System.String]], MyApp"
type="MyApp.SealsInputDialog, MyApp" />
但是,如果具体的泛型是字符串数组而不是字符串呢?如何对以下内容进行 xml 化?
IoC.Container.AddComponent<IInputRequestedDialog<string[]>, SealsInputDialog>("seals");