System.Yaml.YamlNodeManipulator.seq_tag C# (CSharp) Méthode

seq_tag() protected static méthode

Create a sequence node.
protected static seq_tag ( string tag ) : YamlSequence
tag string Tag for the seuqnce.
Résultat YamlSequence
        protected static YamlSequence seq_tag(string tag, params YamlNode[] nodes)
        {
            var result= new YamlSequence(nodes);
            result.Tag= tag;
            return result;
        }