Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator!=()
static
bool
System.Uri.operator!=
(
Uri
?
uri1
,
Uri
?
uri2
)
inline
static
Definition at line
1153
of file
Uri.cs
.
1154
{
1155
if
((
object
)
uri1
==
uri2
)
1156
{
1157
return
false
;
1158
}
1159
if
((
object
)
uri1
==
null
|| (
object
)
uri2
==
null
)
1160
{
1161
return
true
;
1162
}
1163
return
!
uri1
.Equals(
uri2
);
1164
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Uri
Generated by
1.10.0