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
442
of file
Version.cs
.
443
{
444
if
((
object
)v1 ==
null
)
445
{
446
return
(
object
)v2 !=
null
;
447
}
448
return
v1.CompareTo(v2) < 0;
449
}
References
System.Version.CompareTo()
.
System
Version
Generated by
1.10.0