public bool WordSort()
        {
            if (!this.m_isOpen)
            {
                return(false);
            }
            OrderLength comparer = new OrderLength();

            for (int i = 0; i < 0x51a4; i++)
            {
                if (this.m_WordsList[i].m_List != null)
                {
                    this.m_WordsList[i].m_List.Sort(comparer);
                }
            }
            return(true);
        }
        public bool WordSort(int Unicode)
        {
            if (!this.m_isOpen)
            {
                return(false);
            }
            if ((Unicode < 0) || (Unicode > 0x51a4))
            {
                return(false);
            }
            if (this.m_WordsList[Unicode].m_List == null)
            {
                return(false);
            }
            OrderLength comparer = new OrderLength();

            this.m_WordsList[Unicode].m_List.Sort(comparer);
            return(true);
        }
 public bool WordSort(int Unicode)
 {
     if (!this.m_isOpen)
     {
         return false;
     }
     if ((Unicode < 0) || (Unicode > 0x51a4))
     {
         return false;
     }
     if (this.m_WordsList[Unicode].m_List == null)
     {
         return false;
     }
     OrderLength comparer = new OrderLength();
     this.m_WordsList[Unicode].m_List.Sort(comparer);
     return true;
 }
 public bool WordSort()
 {
     if (!this.m_isOpen)
     {
         return false;
     }
     OrderLength comparer = new OrderLength();
     for (int i = 0; i < 0x51a4; i++)
     {
         if (this.m_WordsList[i].m_List != null)
         {
             this.m_WordsList[i].m_List.Sort(comparer);
         }
     }
     return true;
 }