Ejemplo n.º 1
0
 public void Insert(int index, WeatherData item)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public Node(WeatherData d)
 {
     _data = d;
     _next = null;
 }
Ejemplo n.º 3
0
 public int IndexOf(WeatherData value)
 {
     throw new NotImplementedException();
 }