As others have said, if this is a Dictionary<string, List<double>> you could just use
double value = myDict["key"][3];
However, this line:
I know the order of each item in the List.
makes me think that actually you should restructure your code. If you know that the first item always represents one piece of data (e.g. weight), the next always represents another (e.g. height) etc, then you should just create a new type with those properties. Using a List<double> for this will make the code much harder to maintain... it doesn't naturally reveal the information about what each value means.
Once you've changed it to, say, a Dictionary<string, Person> you can use:
double height = myDict["key"].Height;
which is significantly clearer.
Of course it's possible that you meant something else by the line I've quoted...