You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
caseTypeCode.Object:if(type.IsArray){// Used for "extend" since we cant extend array with []if(useExplicitArray)return"Array<"+TypeName(type.GetElementType())+">";returnTypeName(type.GetElementType())+"[]";}
and around L.116
// any other enumerableif(genericType.GetInterfaces().Any(e =>e.GetGenericTypeDefinition()==typeof(IEnumerable<>))){if(useExplicitArray)return"Array<"+TypeName(generics[0])+">";returnTypeName(generics[0])+"[]";}
The text was updated successfully, but these errors were encountered:
Add bool useExplicitArray = false
and around L.116
The text was updated successfully, but these errors were encountered: