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

◆ Equals() [1/3]

bool System.Security.Cryptography.CngAlgorithm.Equals ( [NotNullWhen(true)] CngAlgorithm? other)
inline

Definition at line 99 of file CngAlgorithm.cs.

100 {
101 if ((object)other == null)
102 {
103 return false;
104 }
105 return _algorithm.Equals(other.Algorithm);
106 }

References System.Security.Cryptography.CngAlgorithm._algorithm, and System.other.