Hello, in Javascript, I can add items to an array and then convert the array to a csv like this:
var accounts = [];
accounts.push(123);
accounts.push(456);
var myAccounts = accounts.join(', '); //writes out 123, 456
What is the closest code equivalent to this in C#?
Go to the complete details ...