I have a collection of objects. e.g.
List subscription = new List { new Subscription{ Type = \"Trial\", Type = \"Offl
I would suggest using List.Add():
List.Add()
subscription.Add(new Subscriptioin(...))
LINQ Union() overkill by wrapping a single item by a List<> instance:
Union()
List<>
subscriptions.Union(new List { new Subscriptioin(...) };