Closed CADBIMDeveloper closed 1 year ago
Hi @Elringus,
Current version generates something like:
export function getSampleInputs(): System.Collections.Generic.IEnumerable<HelloWorld.Input>;
for
[JSInvokable] public static IEnumerable<Input> GetSampleInputs () => ...
This PR fixes that
Well, IEnumerable can represent a lot of stuff (from arrays to DB queries). Not sure it's a good idea to just map it to array. I'd suggest using IList instead.
IEnumerable
IList
Hi @Elringus,
Current version generates something like:
for
This PR fixes that