I\'ve just noticed that when you declare a List in c# you can put parentheses or curly braces at the end.
List
List myList = new List&l
To be short - there is no difference in the objects created.
But there's more: What you are asking isn't a List specific question - it's a question of object and Collection initialization.
object
Collection
See here.