Hopefully I fixed ASPNetStileEndpoint

This commit is contained in:
Michael Nolan 2022-08-28 17:17:04 -05:00
parent 5b33a392dd
commit 3b8aa80fb6
1 changed files with 2 additions and 2 deletions

View File

@ -116,12 +116,12 @@ namespace Tesses.Http
object o; object o;
if(t.IsArray) if(t.IsArray)
{ {
var t0=t.MakeArrayType();
object[] items2=new object[items.Count]; object[] items2=new object[items.Count];
int i=0; int i=0;
foreach(var item in items) foreach(var item in items)
{ {
items2[i]=___to_type(t0,item); items2[i]=___to_type(t.GetElementType(),item);
i++; i++;
} }
o=items; o=items;