CLRSharp.Type_Common_System.GetAllMethods C# (CSharp) Method

GetAllMethods() public method

public GetAllMethods ( ) : IMethod[]
return IMethod[]
        public virtual IMethod[] GetAllMethods()
        {
            List<IMethod> methods = new List<IMethod>();
            {
                var __methods = TypeForSystem.GetMethods();
                foreach (var m in __methods)
                {
                    //if (m.Name == funcname)
                    {
                        methods.Add(new Method_Common_System(this, m));
                    }
                }
            }

            return methods.ToArray();
        }