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

◆ operator!=()

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

Definition at line 61 of file CngKeyBlobFormat.cs.

62 {
63 if ((object)left == null)
64 {
65 return (object)right != null;
66 }
67 return !left.Equals(right);
68 }

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