Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLR绑定:函数参数有多维数组报错修改 #730

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
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
7 changes: 6 additions & 1 deletion ILRuntime/CLR/Utils/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,15 @@ public static List<IType> GetParamList(this MethodReference def, ILRuntime.Runti
t = appdomain.GetType(ga, contextType, contextMethod);
if (t == null && genericArguments != null)
t = genericArguments[j];
if (name == gp.Name + "[]")
int nameLength = gp.Name.Length;
if (name.Length == nameLength + 2 && name.StartsWith(gp.Name) && name.EndsWith("[]"))
{
name = t.FullName + "[]";
}
else if (name.Length == nameLength + 11 && name.StartsWith(gp.Name) && name.EndsWith("[0...,0...]"))
{
name = t.FullName + "[,]";
}
else
{
/*name = name.Replace("<" + gp.Name + ">", "<" + ga.FullName + ">");
Expand Down