To store a list of values I’m using UserDictionary.Set (string key, IEnumerable val), but I cannot find how to retrieve the data later on. Any examples?
Thanks
-
https://developer.rhino3d.com/api/RhinoCommon/html/T_Rhino_Collections_ArchivableDictionary.htm
-
var valueOfKey = myUserDic.Dictionary[someExistingKey];