Exemple #1
0
 public void regPushVar(Type t, PushVarDelegate d)
 {
     typePushMap[t] = d;
 }
Exemple #2
0
 public bool tryGetTypePusher(Type t, out PushVarDelegate d)
 {
     return(typePushMap.TryGetValue(t, out d));
 }
Exemple #3
0
 public void RegisterPushVar(Type t, PushVarDelegate d)
 {
     typePushMap[t] = d;
 }