I searched the PsPad forum and found several people who have requested help
however I didn't see any one that addressed the problem.  C# in the Code window
doesn't pull any methods/functions like it used to years ago, it pulls classes,
namespaces and defines but has lost it's ability to get the functions.  I looked
at the syntax ini and compared it to others and the only thing I could see is
that had relevance was the line CodeExplorer=ftCSharp, however I don't see a way
to edit or adjust it. What I'm looking for is something like the below sample:
(This is mangled due to formatting I'm hoping you'll get the gist of what the 
cite:
--------------------------------------------------------------------------------
Hierarchical‎ Code TreeView       
-------------------------------------------------------------------------
TestSample                      {NameSpace - Level 1 deep}
     CommandManager               {Class - Level 2 deep}
            ExecuteCommand           {Method/function in Class -
Level 3 deep}
            Undo                     {Method/function in Class -
Level 3 deep}
            EndDisableCommands       {Method/function in Class -
Level 3 deep}
            BeginDisableCommands     {Method/function in Class -
Level 3 deep}
            ClearHistory             {Method/function in Class -
Level 3 deep}
      Command                      {Class - Level 2 deep}
      RangeInfo                    {Class - Level 2 deep}
            PlaceStart                {Method/function in Class -
Level 3 deep}
            PlaceEnd                  {Method/function in Class -
Level 3 deep}
--------------------------------------------------------------------------------


Which code wise would look something like the below:


using System.Collections.Generic;
using System;

namespace TestSample
{
    internal class CommandManager
    {
        public void ExecuteCommand(Command cmd)
        {
        }

        public void Undo()
        {
        }

        private void EndDisableCommands()
        {
        }

        private void BeginDisableCommands()
        {
        }

        internal void ClearHistory()
        {
        }
    }

    internal abstract class Command
    {
    }

    internal class RangeInfo
    {
        public PlaceStart { get; set; }
        public PlaceEnd { get; set; }
    }
}


I have used this application for years and donated to this project, it would be
nice if this could be resolved.  Any ideas would be appreciated.:)

-- 
<http://forum.pspad.com/read.php?2,61778,61778>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem