terraria-cpp2il v1.4.4.9
Terraria mobile dump, with CallAnalysis (see source code). Dump with reconstucted method: https://infinitynichto.github.io/terraria-cpp2il-methodrecon
|
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, set] |
int | Years [get, set] |
int | Months [get, set] |
int | Days [get, set] |
int | Hours [get, set] |
int | Minutes [get, set] |
int | Seconds [get, set] |
int | Nanoseconds [get, set] |
Private Types | |
enum | Parts { HasNone , HasYears , HasMonths , HasDays = 4 , HasHours = 8 , HasMinutes = 16 , HasSeconds = 32 } |
Static Private Member Functions | |
static string | TryParseDigits (string s, ref 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 9 of file XsdDuration.cs.