我试图在this帖子中做同样的事情,但我收到了错误:
错误3' NUnit.Framework.List'不包含'添加'的定义没有扩展方法'添加'接受类型' NUnit.Framework.List'的第一个参数。可以找到(你错过了使用指令或程序集引用吗?)
这是部件错误:
List maps = new List();
foreach (XmlSchemaType schemaType in xsd.SchemaTypes.Values)
{
maps.Add(schemaImporter.ImportSchemaType(schemaType.QualifiedName));
}
foreach (XmlSchemaElement schemaElement in xsd.Elements.Values)
{
maps.Add(schemaImporter.ImportTypeMapping(schemaElement.QualifiedName));
}
请帮帮我!!!