示例#1
0
        void ITypeDescriber.SetMap(TypeSet type_set)
        {
            var type = type_set.GetByType(typeof(int));

            _IntTypeDescriber = type;
        }
示例#2
0
 private ITypeDescriber _GetDescriber(FieldInfo field)
 {
     return(_TypeSet.GetByType(field.FieldType));
 }
示例#3
0
 void ITypeDescriber.SetMap(TypeSet type_set)
 {
     _CharArrayDescriber = type_set.GetByType(typeof(char[]));
 }
示例#4
0
 private ITypeDescriber _GetDescriber(Type type)
 {
     return(_TypeSet.GetByType(type));
 }