Yaml.MappingNode.MappingNode C# (CSharp) Method

MappingNode() public method

Create a new mappingnode
public MappingNode ( Node key, Node val ) : System
key Node
val Node
return System
        public MappingNode(Node key, Node val)
        {
            if (key == null) key = new Null ();
            if (val == null) val = new Null ();

            this.key = key;
            this.val = val;
        }