What’s the best name for a non-mutating “add” method on an immutable collection? [closed]

In situations like that, I usually go with Concat. That usually implies to me that a new object is being created.

var p = listA.Concat(listB);
var k = listA.Concat(item);

Leave a Comment