terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ AppendAttributeSkipNotify()

void System.Xml.Linq.XElement.AppendAttributeSkipNotify ( XAttribute a)
inlinepackage

Definition at line 277 of file XElement.cs.

278 {
279 a.parent = this;
280 XAttribute xattribute = this.lastAttr;
281 if (xattribute != null)
282 {
283 XAttribute next = xattribute.next;
284 a.next = next;
285 return;
286 }
287 this.lastAttr = a;
288 }
class f__AnonymousType0<< Count > j__TPar

References j__TPar, System.Xml.Linq.XElement.lastAttr, and System.Xml.Linq.XNode.next.