Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetOtherMethods() [2/2]

override MethodInfo[] System.Reflection.RuntimeEventInfo.GetOtherMethods ( bool nonPublic)
inlinevirtual

Reimplemented from System.Reflection.EventInfo.

Definition at line 124 of file RuntimeEventInfo.cs.

125 {
127 if (m_otherMethod == null)
128 {
129 return Array.Empty<MethodInfo>();
130 }
131 for (int i = 0; i < m_otherMethod.Length; i++)
132 {
133 if (Associates.IncludeAccessor(m_otherMethod[i], nonPublic))
134 {
135 list.Add(m_otherMethod[i]);
136 }
137 }
138 return list.ToArray();
139 }

References System.Reflection.Associates.IncludeAccessor(), System.list, and System.Reflection.RuntimeEventInfo.m_otherMethod.