public void Insert(int index, WeatherData item)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public Node(WeatherData d)
 {
     _data = d;
     _next = null;
 }
 public int IndexOf(WeatherData value)
 {
     throw new NotImplementedException();
 }