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

◆ Equals() [1/3]

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

Definition at line 55 of file CngProvider.cs.

56 {
57 if ((object)other == null)
58 {
59 return false;
60 }
61 return _provider.Equals(other.Provider);
62 }

References System.Security.Cryptography.CngProvider._provider, and System.other.