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

◆ Matches() [2/2]

bool System.ComponentModel.AttributeCollection.Matches ( Attribute?[] attributes)
inline

Definition at line 251 of file AttributeCollection.cs.

252 {
253 if (attributes == null)
254 {
255 return true;
256 }
257 for (int i = 0; i < attributes.Length; i++)
258 {
259 if (!Matches(attributes[i]))
260 {
261 return false;
262 }
263 }
264 return true;
265 }

References System.ComponentModel.AttributeCollection.Matches().