Is it possible to get names and types of a custom type?
Please, answer: "Yes, ..." ?
B4X:
Type tPerson(Name As String, Surname As String, Age As Int)
' Something like:
'... GetTypeNumOfFields(tPerson)
'... GetTypeFieldName(tPerson, 0) ' <--- 0 = index of first field
'... GetTypeFieldType(tPerson, 0) ' <--- 0 = index of first field
Please, answer: "Yes, ..." ?