Gets the methods of the current Type.
Returns all the public methods of the current Type.
[Visual Basic] Overloads Public Function GetMethods() As MethodInfo ()
[C#] public MethodInfo[] GetMethods();
[C++] public: MethodInfo* GetMethods() [];
[JScript] public function GetMethods() : MethodInfo[];
When implemented by a derived class, searches for the methods defined for the current Type, using the specified binding constraints.
[Visual Basic] Overloads MustOverride Public Function GetMethods(BindingFlags) As MethodInfo ()
[C#] public abstract MethodInfo[] GetMethods(BindingFlags);
[C++] public: virtual MethodInfo* GetMethods(BindingFlags) [] = 0;
[JScript] public abstract function GetMethods(BindingFlags) : MethodInfo[];