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

◆ operator!=()

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

Definition at line 85 of file CngAlgorithm.cs.

86 {
87 if ((object)left == null)
88 {
89 return (object)right != null;
90 }
91 return !left.Equals(right);
92 }

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