Lets say i have a method:
UpdateObject(IList<MyObject> objs)
and i want to use that method for sending just one object? (i prefer not using method overloading cause i dont want a lot of methods to handle in my interface)
is there a way i could use the same method without doing the following:
UpdateObject(new List<MyObject>(){singleObj})