예제 #1
0
 public void AddRegistration(Type t, StringConversionDelegate converter)
 {
     Delegates[t] = converter;
 }
예제 #2
0
 public void AddRegistration <T>(StringConversionDelegate converter)
 {
     AddRegistration(typeof(T), converter);
 }