LSLib.LS.LSBWriter.CollectStaticStrings C# (CSharp) Méthode

CollectStaticStrings() private méthode

private CollectStaticStrings ( Node node ) : void
node Node
Résultat void
        private void CollectStaticStrings(Node node)
        {
            AddStaticString(node.Name);

            foreach (var attr in node.Attributes)
            {
                AddStaticString(attr.Key);
            }

            foreach (var children in node.Children)
            {
                foreach (var child in children.Value)
                    CollectStaticStrings(child);
            }
        }

Same methods

LSBWriter::CollectStaticStrings ( Resource rsrc ) : void