var count = 10;
var list = new List(new int[count]);
ADD
Here is generic method to get the list with default values:
public static List GetListFilledWithDefaulValues(int count)
{
if (count < 0)
throw new ArgumentException("Count of elements cannot be less than zero", "count");
return new List(new T[count]);
}