Teo_Yanchev

PlantDiscovery

Nov 27th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. Dictionary<string, Dictionary<int, List<double>>> dict1 = new Dictionary<string, Dictionary<int, List<double>>>();
  2. Dictionary<string, Dictionary<int, List<double>>> dict2 = new Dictionary<string, Dictionary<int, List<double>>>();
  3.  
  4. dict1["Candelabra"] = new Dictionary<int, List<double>>();
  5. dict1["Candelabra"][10] = new List<double>() { 7.00 };
  6.  
  7. dict2["Oahu"] = new Dictionary<int, List<double>>();
  8. dict2["Oahu"][10] = new List<double>() { 6.00 };
Advertisement
Add Comment
Please, Sign In to add comment