SharpDox.Model.Repository.SDRepository.GetAllMethods C# (CSharp) Method

GetAllMethods() public method

Gets a list of all methods. Liefert eine Liste aller Methoden.
public GetAllMethods ( ) : List
return List
        public List<SDMethod> GetAllMethods()
        {
            return Methods.Select(n => n.Value).ToList();
        }