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

◆ EncodedValueEquals() [1/2]

bool System.Formats.Asn1.AsnWriter.EncodedValueEquals ( AsnWriter other)
inline

Definition at line 237 of file AsnWriter.cs.

238 {
239 if (other == null)
240 {
241 throw new ArgumentNullException("other");
242 }
243 return EncodeAsSpan().SequenceEqual(other.EncodeAsSpan());
244 }
ReadOnlySpan< byte > EncodeAsSpan()
Definition AsnWriter.cs:218

References System.Formats.Asn1.AsnWriter.EncodeAsSpan(), and System.other.