I believe it may be as simple as adding this in EmitAssembly.GetMethodAttributesFromTypeMember in the if member.IsStatic block:
if (member.Name.StartsWith("op_"))
{
attributes |= MethodAttributes.SpecialName;
}
Description
I believe it may be as simple as adding this in EmitAssembly.GetMethodAttributesFromTypeMember in the if member.IsStatic block:
if (member.Name.StartsWith("op_"))
{
attributes |= MethodAttributes.SpecialName;
}