Cecil 0.11
Cecil 0.11 now ships for .NET 4.0
and .NET Standard 2.0
.
GenericParamConstraint
metadata table. Cecil introduces 0.11 a new type GenericParameterConstraint
to represent that relationship.
If previously you had code that looked like:
foreach (var type in genericParameter.Constraints)
{
// ...
}
You need to write:
foreach (var constraint in genericParameter.Constraints)
{
var type = constraint.ConstraintType;
// ...
}
This releases closes:
Contributors: