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