System.Yaml.YamlScalar.YamlScalar C# (CSharp) Méthode

YamlScalar() public méthode

Initialize string node that has value as its content.
public YamlScalar ( string value ) : System.Text.RegularExpressions
value string Value of the node.
Résultat System.Text.RegularExpressions
        public YamlScalar(string value)
        {
            Tag = ExpandTag("!!str"); Value = value;
        }

Same methods

YamlScalar::YamlScalar ( ) : System.Text.RegularExpressions
YamlScalar::YamlScalar ( DateTime value ) : System.Text.RegularExpressions
YamlScalar::YamlScalar ( bool value ) : System.Text.RegularExpressions
YamlScalar::YamlScalar ( double value ) : System.Text.RegularExpressions
YamlScalar::YamlScalar ( int value ) : System.Text.RegularExpressions
YamlScalar::YamlScalar ( string tag, string value ) : System.Text.RegularExpressions