Static class members are not part of the class instance by definition. Typically, a public property is used.
public class MyClass
{
public List<double> myDouble { get; set; }
public MyClass()
{
myDouble = new List<double>() { 1, 2, 3, 4, 5 };
}
}
class Program
{
static void Main(string[] args)
{
MyClass myclass = new MyClass();
foreach(double item in myclass.myDouble)
{
Console.WriteLine(item);
}
}
}