Sort Members List : MemberInfo « Reflection « C# / C Sharp






Sort Members List

        
/* Copyright (c) 2010 Michael Lidgren

Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.

*/
using System;
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;

namespace Lidgren.Network
{
  /// <summary>
  /// Utility methods
  /// </summary>
  public static class NetUtility
  {

    // shell sort
    internal static void SortMembersList(System.Reflection.MemberInfo[] list)
    {
      int h;
      int j;
      System.Reflection.MemberInfo tmp;

      h = 1;
      while (h * 3 + 1 <= list.Length)
        h = 3 * h + 1;

      while (h > 0)
      {
        for (int i = h - 1; i < list.Length; i++)
        {
          tmp = list[i];
          j = i;
          while (true)
          {
            if (j >= h)
            {
              if (string.Compare(list[j - h].Name, tmp.Name, StringComparison.InvariantCulture) > 0)
              {
                list[j] = list[j - h];
                j -= h;
              }
              else
                break;
            }
            else
              break;
          }

          list[j] = tmp;
        }
        h /= 3;
      }
    }


  }
}

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Get MethodInfo and MemberInfo
2.Deeper Reflection:Finding MembersDeeper Reflection:Finding Members
3.Get variable base type and public numbers
4.Gets the member's underlying type.
5.Gets the member's value on the object.
6.Sets the member's value on the target object.
7.Determines whether the specified MemberInfo can be read.
8.Determines whether the specified MemberInfo can be set.
9.MemberInfo.DeclaringType Property gets the class that declares this member.
10.MemberInfo.GetCustomAttributes returns an array of all custom attributes applied to this member.
11.Get a MemberTypes value indicating the type of the member(method, constructor, event, and so on.)
12.Gets the module in which the type that declares the member represented by the current MemberInfo is defined.Gets the module in which the type that declares the member represented by the current MemberInfo is defined.
13.Gets the name of the current member.
14.Gets the class object that was used to obtain this instance of MemberInfo.
15.Marks each type of member that is defined as a derived class of MemberInfo.
16.Gets a MethodBase that represents the declaring method, if the current Type represents a type parameter of a generic method.
17.Gets position of type parameter in the type parameter list of the generic type or method
18.Getter and Setter check
19.Call Non Public Method