This issue can extended using native types only when JVM counter-part is a native type, otherwise use the JVM class. Some examples are: - `bool` when there is a JVM `boolean`, otherwise use `Java.Lang.Boolean` which can be managed like a `Nullable` type in .NET with`bool?` - `int` when there is a JVM `int`, otherwise use `Java.Lang.Integer` which can be managed like a `Nullable` type in .NET with`int?` _Originally posted by @masesdevelopers in https://github.com/masesgroup/JNet/issues/363#issuecomment-1960590482_
Some examples are:
boolwhen there is a JVMboolean, otherwise useJava.Lang.Booleanwhich can be managed like aNullabletype in .NET withbool?intwhen there is a JVMint, otherwise useJava.Lang.Integerwhich can be managed like aNullabletype in .NET withint?Originally posted by @masesdevelopers in #363 (comment)