System.Yaml.YamlNode.ToYamlFile C# (CSharp) Méthode

ToYamlFile() public méthode

Convert YamlNode to a YAML text and save it to the file.
public ToYamlFile ( string FileName ) : void
FileName string Name of the file to output
Résultat void
        public void ToYamlFile(string FileName)
        {
            ToYamlFile(FileName, DefaultConfig);
        }

Same methods

YamlNode::ToYamlFile ( string FileName, YamlConfig config ) : void