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

◆ ConstructorArguments

override IList<CustomAttributeTypedArgument> System.Reflection.RuntimeCustomAttributeData.ConstructorArguments
get

Definition at line 26 of file RuntimeCustomAttributeData.cs.

27 {
28 get
29 {
30 if (m_typedCtorArgs == null)
31 {
32 CustomAttributeTypedArgument[] array = new CustomAttributeTypedArgument[m_ctorParams.Length];
33 for (int i = 0; i < array.Length; i++)
34 {
36 array[i] = new CustomAttributeTypedArgument(m_scope, customAttributeEncodedArgument);
37 }
38 m_typedCtorArgs = Array.AsReadOnly(array);
39 }
40 return m_typedCtorArgs;
41 }
42 }
IList< CustomAttributeTypedArgument > m_typedCtorArgs
readonly CustomAttributeCtorParameter[] m_ctorParams