We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971737f commit 958dd1eCopy full SHA for 958dd1e
src/Mono.VisualC.Code/Atoms/Method.cs
@@ -168,7 +168,7 @@ private CodeMemberMethod CreateInterfaceMethod ()
168
169
// FIXME: Only add MangleAs attribute if the managed type chosen would mangle differently by default
170
if (!IsVirtual && !paramStr.Equals (string.Empty))
171
- param.CustomAttributes.Add (new CodeAttributeDeclaration ("MangleAs", new CodeAttributeArgument (new CodePrimitiveExpression (paramStr))));
+ param.CustomAttributes.Add (new CodeAttributeDeclaration ("MangleAsAttribute", new CodeAttributeArgument (new CodePrimitiveExpression (paramStr))));
172
173
method.Parameters.Add (param);
174
}
0 commit comments