System.Xml.Xsl.Runtime.XmlMergeSequenceWriter.WriteString C# (CSharp) Method

WriteString() private method

Write the string value of a top-level atomic value.
private WriteString ( string value ) : void
value string
return void
        private void WriteString(string value) {
            if (this.lastItemWasAtomic) {
                // Insert space character between adjacent atomic values
                this.xwrt.WriteWhitespace(" ");
            }
            else {
                this.lastItemWasAtomic = true;
            }
            this.xwrt.WriteString(value);
        }