Today i read an answer in this site. MVC ViewModel - Object Reference Not Set to Instance of an Object
I'm confused about default values of instanced classes. When we create a new class by using "new" keyword, its fields's values automatically setted to their default values.
For example integers goes to 0 and strings goes to null.
What about the Lists?
List<int>
Why we dont have new instance of the List belong to the instanced object?
null, not"".