Пример #1
0
		public bool Write(Array value)
		{
			return this.writer.WriteLine("[ ") && this.writer.AddIndent() && value.All((node, last) => this.Write(node) && (last || this.writer.Write(",")) && this.writer.WriteLine(" ")) && this.writer.RemoveIndent() && this.writer.Write("]");
		}