System.Yaml.YamlNodeManipulator.str C# (CSharp) 메소드

str() 보호된 정적인 메소드

Create a scalar node. Tag is set to be "!!str".
protected static str ( string value ) : YamlScalar
value string Value for the scalar node.
리턴 YamlScalar
        protected static YamlScalar str(string value)
        {
            return new YamlScalar(value);
        }

Same methods

YamlNodeManipulator::str ( string tag, string value ) : YamlScalar