MapsterMapper / Mapster

A fast, fun and stimulating object to object Mapper
MIT License
4.29k stars 327 forks source link

Generating valid, meaningful method name from destination type #586

Closed rafalka closed 1 year ago

rafalka commented 1 year ago

This PR fixes #580

Examples:

typeof(int) => Int
typeof(int?) => Int
typeof(int?[]) => IntArray
typeof(List<string[]>) => StringArrayList
andrerav commented 1 year ago

Thanks!