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

YamlScalar() public méthode

Create a scalar node with arbitral tag.
public YamlScalar ( string tag, string value ) : System.Text.RegularExpressions
tag string Tag to the node.
value string Value of the node.
Résultat System.Text.RegularExpressions
        public YamlScalar(string tag, string value)
        {
            Tag = ExpandTag(tag); 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 value ) : System.Text.RegularExpressions