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

◆ GetRawDateTimeConstant()

static DateTime System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant ( CustomAttributeData attr)
inlinestaticprivate

Definition at line 317 of file RuntimeParameterInfo.cs.

318 {
319 foreach (CustomAttributeNamedArgument namedArgument in attr.NamedArguments)
320 {
321 if (namedArgument.MemberInfo.Name.Equals("Value"))
322 {
323 return new DateTime((long)namedArgument.TypedValue.Value);
324 }
325 }
326 return new DateTime((long)attr.ConstructorArguments[0].Value);
327 }

References System.DateTime.

Referenced by System.Reflection.RuntimeParameterInfo.GetDefaultValueInternal().