示例#1
0
 public static void SubscribeToAddedEvent(string key, DynamicStorageEventHandler eventHandler)
 {
     if (SubscriptionsDictionary_Added.ContainsKey(key))
     {
         SubscriptionsDictionary_Added[key] += eventHandler;
     }
     else
     {
         SubscriptionsDictionary_Added.Add(key, eventHandler);
     }
 }