Possible Duplicate:
String vs string in C#
I have a simple scenario where I am binding a grid to a collection of objects that will be stored in a list. The question that I was wondering is what is the best practice for declaring a list of objects?
IList<object> myCollection;
or
IList<Object> myCollection;
I've read some code standards articles and a lot of people suggest using String vs string so I was wondering if the same rule applies here and why? What is different about the two methods (if anything) and what kind of performance gains are there for doing it one way vs the other.
This grid is part of a custom control where the list is exposed as a property that will be bound to the grid.