Example #1
0
 public TypeDef(QualifiedClassName name, TypeDef baseType, TypeType typeType, Type type)
 {
     _baseType = baseType;
     Name = name;
     TypeType = typeType;
     Type = type;
 }
        static string ToCamelCase(TypeDef commandType)
        {
            var name = commandType.Name.Name;

            return char.ToLower(name[0]) + name.Substring(1);
        }