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

YamlScalar() public méthode

Initialize a timestamp node that has value as its content.
public YamlScalar ( DateTime value ) : System.Text.RegularExpressions
value DateTime
Résultat System.Text.RegularExpressions
        public YamlScalar(DateTime value)
        {
            YamlScalar node = value;
            Tag = node.Tag;
            Value = node.Value;
        }

Same methods

YamlScalar::YamlScalar ( ) : 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
YamlScalar::YamlScalar ( string tag, string value ) : System.Text.RegularExpressions