Beispiel #1
0
 public void Resolve(MapField <string, string> uids)
 {
     uids.ToList().ForEach(kv =>
     {
         if (IsValid($"_:{kv.Key}") && IsValid(kv.Value))
         {
             Resolve($"_:{kv.Key}", kv.Value);
         }
     });
 }