Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions ILRuntime/Runtime/Enviorment/CrossBindingCodeGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,15 +373,6 @@ static string GetParametersTypeString(ParameterInfo[] param, Type returnType)
if (isByRef)
sb.Append(".MakeByRefType()");
}
if (returnType != typeof(void))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

能否提供一个生成不正确的具体例子

{
if (!first)
sb.Append(", ");
string clsName, realClsName;
bool isByRef;
returnType.GetClassName(out clsName, out realClsName, out isByRef, true);
sb.Append(realClsName);
}
return sb.ToString();
}

Expand Down