how can I convert a list of integer arrays from C# to JavaScript? Is there a way to parse it? I've tried something along these lines:
@List<int[]> linkedRazorResources = Model.LinkedEvents;
for(var i = 0; i<@linkedRazorResources.Count;i++){
linkedResources[i] = @linkedRazorResources[i];
}
I can't seem to access the index in @linkedRazorResources[i] though.