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

◆ operator!=()

static bool System.Security.Cryptography.CngProvider.operator!= ( CngProvider? left,
CngProvider? right )
inlinestatic

Definition at line 41 of file CngProvider.cs.

42 {
43 if ((object)left == null)
44 {
45 return (object)right != null;
46 }
47 return !left.Equals(right);
48 }

References System.Security.Cryptography.CngProvider.Equals().