System.Diagnostics.SwitchAttribute.GetAllRecursive C# (CSharp) 메소드

GetAllRecursive() 정적인 개인적인 메소드

static private GetAllRecursive ( MemberInfo member, List switchAttribs ) : void
member System.Reflection.MemberInfo
switchAttribs List
리턴 void
        static void GetAllRecursive(MemberInfo member, List<object> switchAttribs)
        {
            object[] attribs = member.GetCustomAttributes(typeof(SwitchAttribute), false);
            switchAttribs.AddRange(attribs);
        }
    }

Same methods

SwitchAttribute::GetAllRecursive ( Type type, List switchAttribs ) : void