What's the best way to populate a Chilkat JsonArray with values from a List
List<int> MyList = new List<int> { 1, 2, 3, 4, 5 };
Chilkat.JsonArray jsonArray = new Chilkat.JsonArray();
Can I do jsonArray.Load(???) or do I have to loop through the list with JsonArray.AddIntAt?
BTW I'm a C# newbie!