paulirwin / JavaToCSharp

Java to C# converter
MIT License
266 stars 90 forks source link

Convert class bounded type parameters #125

Open javiertuya opened 1 month ago

javiertuya commented 1 month ago

Bounded type parameters in class declarations should be converted into generic type constraints, e.g. Child<T extends BoundType<T>> should be converted into Child<T> where T : BoundType<T>