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
{{ message }}
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
In the document it was state that js array will convert to C# array directly
But sometimes, function that was taken array in javascript can mutate array and resize it by add/pop/splice etc. And so I don't think the array could be mutated as expect like that
Javascript array is more equivalence to List in C#, not array, so I think we should use List or IList to map with it
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the document it was state that js array will convert to C# array directly
But sometimes, function that was taken array in javascript can mutate array and resize it by add/pop/splice etc. And so I don't think the array could be mutated as expect like that
Javascript array is more equivalence to
List
in C#, not array, so I think we should useList
orIList
to map with itThe text was updated successfully, but these errors were encountered: