Esempio n. 1
0
 public static myV getVector(LinkedList<string> myStringArray)
 {
     myV tempV = new myV();
     List<string> list = (from i in myStringArray select i).ToList();
     tempV.myCollection = new ObservableCollection<string>(list);
     return tempV;
 }
Esempio n. 2
0
            public static myV getVector(LinkedList <string> myStringArray)
            {
                myV           tempV = new myV();
                List <string> list  = (from i in myStringArray select i).ToList();

                tempV.myCollection = new ObservableCollection <string>(list);
                return(tempV);
            }
Esempio n. 3
0
 public static myV getLegend(List<double> itemsList,List<string> legendList,string n)
 {
     myV tempV = new myV();
     tempV.myLegends = legendList;
     tempV.name = n;
     tempV.items = itemsList;
     return tempV;
 }
Esempio n. 4
0
            public static myV getLegend(List <double> itemsList, List <string> legendList, string n)
            {
                myV tempV = new myV();

                tempV.myLegends = legendList;
                tempV.name      = n;
                tempV.items     = itemsList;
                return(tempV);
            }