Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator<=()
static
bool
System.Version.operator<=
(
Version
?
v1
,
Version
?
v2
)
inline
static
Definition at line
451
of file
Version.cs
.
452
{
453
if
((
object
)v1 ==
null
)
454
{
455
return
true
;
456
}
457
return
v1.CompareTo(v2) <= 0;
458
}
References
System.Version.CompareTo()
.
System
Version
Generated by
1.10.0