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

◆ DefaultFormatFieldCount

int System.Version.DefaultFormatFieldCount
getprivate

Definition at line 31 of file Version.cs.

32 {
33 get
34 {
35 if (_Build != -1)
36 {
37 if (_Revision != -1)
38 {
39 return 4;
40 }
41 return 3;
42 }
43 return 2;
44 }
45 }
readonly int _Build
Definition Version.cs:15
readonly int _Revision
Definition Version.cs:17

Referenced by System.Version.ToString(), System.Version.TryFormat(), and System.Version.TryFormat().