我正在使用 Mono.Cecil 0.9.5.3,在安装 VS2012 RC(导致 .NET 4.0 System.XML.DLL 被其 .NET 4.5 对应物替换)之后,我在一些迭代的代码中得到了 System.ArugmentException每个方法的自定义属性。原因似乎是在某些情况下,AsyncStateMachine
属性的 ctor 参数(应该是 Type)为空。
以下代码重现了它:
string path = Assembly.Load("System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089").Location;
AssemblyDefinition systemXmlAssembly = AssemblyDefinition.ReadAssembly(path);
var query =
from ModuleDefinition module in systemXmlAssembly.Modules
from TypeDefinition td in module.Types
from MethodDefinition method in td.Methods
from CustomAttribute att in method.CustomAttributes
where method.Name == "System.Xml.IDtdParser.ParseInternalDtdAsync" &&
att.AttributeType.Name == "AsyncStateMachineAttribute"
select att;
CustomAttribute attribute = query.Single();
var args = attribute.ConstructorArguments; // <---- this line throws an ArgumentException
异常是从
Mono.Cecil.ModuleDefinition.CheckFullName(string fullName = "")
我的问题是 - 这是 Mono.Cecil 还是 System.Xml.DLL 中的错误?规范是否允许“空”类型作为 ctor 参数出现?