Quantcast
Channel: Xojo Programming Forum - Latest topics
Viewing all articles
Browse latest Browse all 3886

Differentiate methods using instrospection

$
0
0

Hello,

I would like to know how to differentiate 2 exact methods (name+parameters) using Instrospection

Using Instrospection.TypeInfo.GetMethods(), I have the 2 methods that shows up but I do not know how to differentiate them.

Class Parent
  Sub createDict(level As Integer)
  End Sub
End Class

Class Child Inherits Parent
  Sub createDict(level As Integer)
   super.createDict(level)
   //Additional stuff there
  End Sub
End Class

Regards,

Julien

9 posts - 4 participants

Read full topic


Viewing all articles
Browse latest Browse all 3886

Trending Articles