Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. Dictionary<string, Dictionary<string, string[]>[]>?
  2.  
  3. private static readonly Dictionary<string, Dictionary<string, DirectoryInfo[]>[]> OrderTypeToFulfillmentDict = new Dictionary<string, Dictionary<string, DirectoryInfo[]>>()
  4. {
  5. {"Type1", new []
  6. {
  7. ProductsInfo.Type1FulfillmentNoSurfacesLocations,
  8. ProductsInfo.Type2FulfillmentSurfacesLocations
  9. }
  10. }
  11. }
  12.  
  13. Dictionary<string, DirectoryInfo[]>.
  14.  
  15. "Cannot convert from System.Collections.Generic.Dictionary<string, System.IO.DirectoryInfo[]>[] to System.Collections.Generic.Dictionary<string, System.IO.DirectoryInfo[]>"
  16.  
  17. var dic = new Dictionary<string, Dictionary<int, int[]>[]>
  18. {
  19. {
  20. "key1",
  21. new[]
  22. {
  23. new Dictionary<int, int[]>
  24. {
  25. {1, new[] {1, 2, 3, 4}}
  26. }
  27. }}
  28. };
  29.  
  30. Dictionary<string, Dictionary<string, string[]>[]> complexDictionary = new Dictionary<string, Dictionary<string, string[]>[]>();
  31.  
  32. var complexDictionary = new Dictionary<string, Dictionary<string, string[]>[]>();
  33.  
  34. // array of dictionary
  35. Dictionary<int, string[]>[] matrix = new Dictionary<int, string[]>[4];
  36.  
  37. //Dictionary of string and dictionary array
  38. Dictionary<string, Dictionary<string, string[]>[]> dicOfArrays= new Dictionary<string, Dictionary<string, string[]>[]>();
  39.  
  40. private static readonly Dictionary<string, Dictionary<string, DirectoryInfo[]>>
  41.  
  42. OrderTypeToFulfillmentDict = new Dictionary<string, Dictionary<string, DirectoryInfo[]>>()
  43. {
  44. {"Type1", new []
  45. {
  46. ProductsInfo.Type1FulfillmentNoSurfacesLocations,
  47. ProductsInfo.Type2FulfillmentSurfacesLocations
  48. }
  49. }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement