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