Exemple #1
0
 public static MethodCall Get(MethodInfo field)
 {
     MethodCall t;
     cachedTransformers.TryGetValue(field, out t);
     if (t == null)
         cachedTransformers[field] = t = new MethodCall(field);
     return t;
 }