terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
|
Public Types | |
enum | DurationType { Duration , YearMonthDuration , DayTimeDuration } |
Public Member Functions | |
XsdDuration (bool isNegative, int years, int months, int days, int hours, int minutes, int seconds, int nanoseconds) | |
XsdDuration (TimeSpan timeSpan) | |
XsdDuration (TimeSpan timeSpan, XsdDuration.DurationType durationType) | |
XsdDuration (string s, XsdDuration.DurationType durationType) | |
TimeSpan | ToTimeSpan (XsdDuration.DurationType durationType) |
override string | ToString () |
Package Functions | |
Exception | TryToTimeSpan ([Out] TimeSpan result) |
Exception | TryToTimeSpan (XsdDuration.DurationType durationType, [Out] TimeSpan result) |
string | ToString (XsdDuration.DurationType durationType) |
Static Package Functions | |
static Exception | TryParse (string s, [Out] XsdDuration result) |
static Exception | TryParse (string s, XsdDuration.DurationType durationType, [Out] XsdDuration result) |
Properties | |
bool | IsNegative [get] |
int | Years [get] |
int | Months [get] |
int | Days [get] |
int | Hours [get] |
int | Minutes [get] |
int | Seconds [get] |
int | Nanoseconds [get] |
Private Types | |
enum | Parts { HasNone , HasYears , HasMonths , HasDays = 4 , HasHours = 8 , HasMinutes = 16 , HasSeconds = 32 } |
Static Private Member Functions | |
static string | TryParseDigits (string s, int offset, bool eatDigits, [Out] int result, [Out] int numDigits) |
Private Attributes | |
int | years |
int | months |
int | days |
int | hours |
int | minutes |
int | seconds |
uint | nanoseconds |
Definition at line 8 of file XsdDuration.cs.