Is there any (Reflection) code that produces the output below?
INPUT (code module / class):
OUTPUT:
If there is no way to show the private ones, no problem for me.
INPUT (code module / class):
B4X:
Sub Process_Globals
...
...
End Sub
Sub Method_A
...
End Sub
Public Sub Method_B
...
End Sub
Private Sub Method_C
...
End Sub
Public Sub ShowFunctions(module as Object)
'magic code goes here
End Sub
OUTPUT:
B4X:
ShowFunctions(Me)
'Public:
'- Method_A
'- Method_B
'- ShowFunctions
'Private:
'- Method_C
If there is no way to show the private ones, no problem for me.